{% extends 'admin/layout/admin_app.html' %} {% block content %} {% if messages %} {% endif %}

User Management

{% if 1 in actions %} {% endif %}
{% for user in users %} {% endfor %}
Name Email Created At Last Active Time Status Action
{{ user.name }} {{ user.email }} {{ user.created_at }} {% if user.last_active %} {{ user.last_active }} {% else %} - {% endif %}
{% if 2 in actions %} {% endif %} {% if 3 in actions %} {% endif %} {% if 4 in actions %} {% endif %}
{% if users.has_other_pages %}
    {% if users.has_previous %} {% else %} {% endif %} {% for i in users.paginator.page_range %} {% if users.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if users.has_next %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block custom_js %} {% endblock %}