{% extends '/admin/authenticated/layout/base.html.twig' %} {% import '/admin/components/helpers_macro.html.twig' as helpers %} {% block title %} Users {% endblock %} {% block css %} {{ parent() }} {% endblock %} {% block content %} {{ helpers.notifications_success() }} {{ helpers.notifications_error() }} {{ helpers.notifications_warning() }}
Users
{% for user in users %} {% endfor %}
Username Role Status
{{ user.email }} {% for roleId in user.roles %} {% set roleById = rolesMap[roleId] %}
{{ roleById.label }}
{% endfor %}
{% if user.active %} {% else %} {% endif %}
{{ helpers.form_processing() }} {% endblock %} {% block js %} {{ parent() }} {% endblock %}