You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
Twig
35 lines
1.5 KiB
Twig
{% extends '/base.html.twig' %}
|
|
|
|
{% block title %}{{ 'pages.admin.user'|trans }} - {{ parent() }}{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<h1 class="mb-4">{{ 'pages.admin.user'|trans }}</h1>
|
|
<table class="table table-striped table-hover table-datatable"
|
|
data-sort-paging="true"
|
|
data-sort-ajax="{{ path('admin_user_ajax') }}"
|
|
data-sort-layout='{"topStart":"search","topEnd":null,"bottomStart":null,"bottomEnd":"paging"}'
|
|
>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" data-sort-name="email">{{ 'fields.email.label'|trans }}</th>
|
|
<th scope="col" data-sort-name="name">{{ 'fields.name'|trans }}</th>
|
|
<th scope="col" data-sort-name="isVerified">{{ 'fields.emailVerify'|trans }}</th>
|
|
<th scope="col" data-sort-name="adminValidated">{{ 'fields.adminValidated'|trans }}</th>
|
|
<th scope="col" data-sort-name="administrator">{{ 'fields.administrator'|trans }}</th>
|
|
<th scope="col" data-sort="false"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="table-group-divider">
|
|
<tr>
|
|
<td>email</td>
|
|
<td>name</td>
|
|
<td>isVerified</td>
|
|
<td>adminValidated</td>
|
|
<td>administrator</td>
|
|
<td> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
|
|
{% block importmap %}{{ importmap(['app', 'datatables']) }}{% endblock %} |