{% extends "layouts/dashboard.html" %} {% block title %}User management — IILMP{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
Search accounts and manage roles, staff flags, and direct permissions.
| Name | Role | Status | Staff | |||
|---|---|---|---|---|---|---|
| {% include "components/user_avatar.html" with user=u size="sm" variant="on_light" only %} | {{ u.email }} | {{ u.get_full_name|default:"—" }} | {% if u.get_role_display %} {{ u.get_role_display }} {% else %} — {% endif %} | {% if u.is_active %} Active {% else %} Inactive {% endif %} | {% if u.is_staff %} Staff {% else %} — {% endif %} | Edit |
|
{% if request.GET.q or request.GET.role or request.GET.active %}No accounts match these filters.{% else %}No user accounts yet.{% endif %} {% if request.GET.q or request.GET.role or request.GET.active %} Broaden your search, change the role, or clear filters to return to the full list. {% else %} Create the first account to begin issuing IILMP roles. {% endif %}
{% if request.GET.q or request.GET.role or request.GET.active %}
Clear filters
{% else %}
Create first user
{% endif %}
|
||||||