resources-manager-webui/templates/security/listUsers.html.twig

37 lines
972 B
Twig
Raw Permalink Normal View History

2020-01-02 21:18:47 +01:00
{% extends 'base.html.twig' %}
{% block title %}Manage users{% endblock %}
{% block header %}<h1>Manage users</h1>{% endblock %}
{% block nav %}{% include 'menus.html.twig' %}{% endblock %}
{% block content %}
<article id="FormCreateUser">
<h2>Create a new user</h2>
{{ form(formCreateUser) }}
2020-01-02 22:27:51 +01:00
<p>{{ form_errors(formCreateUser) }}</p>
2020-01-02 21:18:47 +01:00
</article>
<article>
<h2>Users list</h2>
<table>
<thead>
<tr>
<th>Displayed Name</th>
<th>Login (email)</th>
<th>Roles</th>
<th>Active</th>
</tr>
</thead>
<tbody>
{% for u in users %}
<tr>
<td>{{ u.displayName }} </td>
<td>{{ u.email }}</td>
<td>{{ u.roles|join(',') }}</td>
<td>{{ u.active? 'Yes':'No' }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</article>
{% endblock %}