{% extends 'admincliente3.html.twig' %} {% block title %}{{ parent() }} - usuarios{% endblock %} {% block stylesheets %}{{ parent() }}{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body3 %} {#

REQUISIÇÕES ENVIADAS

{% for user in users %} {% endfor %}
NOME ATRIBUIÇÕES E-MAIL AUTENTICADO Ações
{{ user.nome }} {% for role in user.roles %} {% if role == "ROLE_ADMIN" %} {% set name="Administrador" %} {% set color="danger" %} {% elseif role == "ROLE_CLIENTE_ADMIN"%} {% set name="Cliente" %} {% set color="success" %} {% elseif role == "ROLE_SECRE_ADMIN"%} {% set name="Secretario(a)" %} {% set color="warning" %} {% else %} {% set name="Usuário normal" %} {% set color="dark" %} {% endif %} {{ name }} {% endfor %} {{ user.email }}
#}
{#

Charts
#} {#

Forms
#} {#

Buttons
#} {#

Calnedar
#} {#

Errors
#}
{#
{% include '_partials/_flash.html.twig' %} {% block body %}{% endblock %}
#}
{% endblock %}