57 lines
2.9 KiB
Twig
57 lines
2.9 KiB
Twig
{# This partial template renders a table of users, to be populated with rows via an AJAX request.
|
|
# This extends a generic template for paginated tables.
|
|
#
|
|
# Note that this template contains a "skeleton" table with an empty table body, and then a block of Handlebars templates which are used
|
|
# to render the table cells with the data from the AJAX request.
|
|
#}
|
|
|
|
{% extends "tables/table-paginated.html.twig" %}
|
|
|
|
{% block table %}
|
|
<table id="{{table.id}}" class="tablesorter table table-bordered table-hover table-striped" data-sortlist="{{table.sortlist}}">
|
|
<thead>
|
|
<tr>
|
|
<th class="sorter-metatext" data-column-name="name" data-column-template="#{{table.id}}-column-info" data-priority="1">{{translate('USER')}} <i class="fas fa-sort"></i></th>
|
|
{% if 'last_activity' in table.columns %}
|
|
<th class="sorter-metanum" data-column-name="last_activity" data-column-template="#{{table.id}}-column-last-activity" data-priority="3">{{translate("ACTIVITY.LAST")}} <i class="fas fa-sort"></i></th>
|
|
{% endif %}
|
|
{% if 'via_roles' in table.columns %}
|
|
<th data-column-template="#{{table.id}}-column-via-roles" data-sorter="false" data-filter="false" data-priority="1">{{translate('PERMISSION.VIA_ROLES')}}</th>
|
|
{% endif %}
|
|
<th class="filter-select filter-metatext" data-column-name="status" data-column-template="#{{table.id}}-column-status" data-priority="2">{{translate("STATUS")}} <i class="fas fa-sort"></i></th>
|
|
<th data-column-name="actions" data-column-template="#{{table.id}}-column-actions" data-sorter="false" data-filter="false" data-priority="1">{{translate("ACTIONS")}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
|
|
{% block table_cell_templates %}
|
|
{# This contains a series of <script> blocks, each of which is a client-side Handlebars template.
|
|
# Note that these are NOT Twig templates, although the syntax is similar. We wrap them in the `verbatim` tag,
|
|
# so that Twig will output them directly into the DOM instead of trying to treat them like Twig templates.
|
|
#
|
|
# These templates require handlebars-helpers.js, moment.js
|
|
#}
|
|
{% block table_users_column_info %}
|
|
{% include "tables/columns/users-info.html.twig" %}
|
|
{% endblock %}
|
|
|
|
{% block table_users_column_last_activity %}
|
|
{% include "tables/columns/users-last_activity.html.twig" %}
|
|
{% endblock %}
|
|
|
|
{% block table_users_column_status %}
|
|
{% include "tables/columns/users-status.html.twig" %}
|
|
{% endblock %}
|
|
|
|
{% block table_users_column_actions %}
|
|
{% include "tables/columns/users-actions.html.twig" %}
|
|
{% endblock %}
|
|
|
|
{% block table_users_column_via_roles %}
|
|
{% include "tables/columns/users-via_roles.html.twig" %}
|
|
{% endblock %}
|
|
{% endblock %}
|