{{ include('partials/page-title.html.twig', page) }} {{ include('partials/validation.html.twig') }}
{% if user.roles.ROLE_SUPERADMIN is defined and page.title == 'Users' %} Add User {% endif %}
{% for key, ___user in userlist %}
{% if ___user.account_disabled %} Disabled {% endif %}
{% if ___user.avatar != '' %} {% else %}
{{ ___user.first_name|slice(0, 1)}} {{ ___user.second_name|slice(0, 1)}}
{% endif %}
{% if page.title == 'Users' %} View Profile {% elseif page.title == 'Directory' %} View Profile {% endif %}
{% endfor %}
{{ include('partials/footer.html.twig') }}