{% extends 'base.html' %} {% block title %}User Accounts{% endblock %} {% block content %}

User Accounts

Create User
{% if query or current_role or current_status %} Clear {% endif %}
{% for u in users %} {% empty %} {% endfor %}
Username Name Role Groups Last Login Status Security
{{ u.username }} {{ u.get_full_name|default:"—" }} {{ u.get_role_display }} {% with custom_groups=u.groups.all %} {% if custom_groups %} {% for g in custom_groups %} {% if not g.name|slice:":5" == "role:" %} {{ g.name }} {% endif %} {% endfor %} {% else %} — {% endif %} {% endwith %} {{ u.last_login|date:"Y-m-d H:i"|default:"Never" }} {% if u.is_active %} Active {% else %} Inactive {% endif %} {% if u.is_locked %} Locked {% elif u.must_change_password %} Force Password Change {% else %} OK {% endif %} Edit Credentials Reset Password {% if u != request.user %}
{% csrf_token %}
{% endif %}
No users found.
{% include "partials/pagination.html" with page_obj=users %}
{% endblock %}