{% extends '@Core/base.html.twig' %} {% block pagetitle %}Listado de usuarios{% endblock %} {% block content %} {% for user in users %} {% endfor %}
Nombre Usuarioe Ultimo acceso telefono Estado Actions
{{ user.name }} {{ user.username }} {{ user.numAccess }} {{ user.phone }} {% if user.status and user.status.code == "T_ENABLED" %} {{ user.status.name }} {% elseif user.status and user.status.code == "T_DISABLED" %} {{ user.status.name }} {% endif %}
{% endblock%}