{% extends "cephia/accounts_base.html" %} {% load bootstrap3 %} {% load el_pagination_tags %} {% block page_heading %}User list ({{ user_count|default:"0" }}){% endblock %} {% block page_content %} {% paginate users %}
{% show_pages %} {% for row in users %} {% empty %} {% endfor %}
Username First name Last name Groups Active Unlocked Last modified Last login
{{row.username}} {{row.first_name}} {{row.last_name}} {% if row.is_superuser %} Admin {% else %} {{row.groups.all|join:","}} {% endif %} {% if row.is_active %} {% else %} {% endif %} {% if row.temporary_locked_out_at %} {% else %} {% endif %} {{row.modified}} {{row.last_login}}
No users
{% show_pages %}
New user

{% endblock %}