at the end of the day, it was inevitable

This commit is contained in:
Mo Elzubeir
2022-12-09 08:36:26 -06:00
commit 1218570914
1768 changed files with 887087 additions and 0 deletions
@@ -0,0 +1,40 @@
{% extends 'AdminBundle::layout-inner.html.twig' %}
{% block inner_content %}
<h1>
Not verified users
</h1>
<table class="table table-bordered">
<thead>
<tr>
<th>{{ knp_pagination_sortable(users, 'Email', 'User.email') }}</th>
<th>{{ knp_pagination_sortable(users, 'First Name', 'User.firstName') }}</th>
<th>{{ knp_pagination_sortable(users, 'Last Name', 'User.lastName') }}</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.email }}</td>
<td>{{ user.firstName }}</td>
<td>{{ user.lastName }}</td>
<td>
<a class="btn btn-info btn-block" href="{{-
path('admin_userverification_show', { 'id': user.id })
-}}">Show</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="4" class="text-center">No data.</td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="navigation">
{{ knp_pagination_render(users) }}
</div>
{% endblock inner_content %}