{% for role in usuario.roles %}
{% if role == "ROLE_ADMIN" %}
{% set name="Administrador" %}
{% set color="danger" %}
{% elseif role == "ROLE_MEDICO_ADMIN"%}
{% set name="Médico" %}
{% set color="info" %}
{% elseif role == "ROLE_SECRE_ADMIN"%}
{% set name="Secretário" %}
{% set color="warning" %}
{% else %}
{% set name="Técnico" %}
{% set color="dark" %}
{% endif %}
{{ name }}
{% endfor %}
Do sistema
{% if usuario.isAtivo == true %}
Ativo
{% else %}
Não ativo
{% endif %}