{% extends 'stela_control/base_list.html' %} {% load static %} {% load i18n %} {% load humanize %} {% load crispy_forms_tags %} {% block title %}

{% endblock %} {% block side_title %}

STELA {% trans "CONTROL DYNAMIC" %} | {% trans "Users Control" %}

{% endblock %} {% block topButtons %}
{% endblock %} {% block listTitle %}

{% trans "Users List" %}

{% endblock %} {% block thead %} Id {% trans "User" %} {% trans "Email" %} {% trans "Rol" %} {% trans "Status" %} {% trans "View" %} {% trans "Created" %} {% endblock %} {% block tbody %} {% for get in users %} {{get.id}} {{get.username}} {{get.email}} {% if get.is_superuser is True %} {% trans "Superuser" %} {% else %} {% trans "Linkzone User" %} {% endif %} {% if get.is_active is True %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {{get.created|naturaltime}} {% endfor %} {% endblock %} {% block addScript %} {% endblock %}