{% extends 'administrator/_layout.auth.html' %} {% block title %}Users{% endblock %} {% block subtitle %}Users list{% endblock %} {% block content %} Total: {{ users.total }} {% if users.total == 0 %} {% else %} {% for user in users['items'] %} {% endfor %} {% endif %}
id email status action
{{ user.id }} {{ user.email }} {% if user.status == 0 %} Inactive {% else %} Active {% endif %} Edit
{% endblock %}