1 {% trans_default_domain 'rapsysuser' %}
2 {% extends '@RapsysUser/_base.html.twig' %}
6 <h2><a href="{{ self_url }}">{{ title }}</a></h2>
8 {% if groups is defined and groups %}
9 {% for group, users in groups %}
10 <article id="rapsysuser_index_{{ group|lower }}">
14 {% if users is defined and users %}
16 {% for id, user in users %}
17 <li><a href="{{ user.edit }}">{{ [user.forename, user.surname]|filter(v => v)|join(' ') }} <{{ user.mail }}></a></li>