{% extends "rebac_admin/base.html" %} {% block title %}Users{% endblock %} {% block content %}
| ID | Username | Created by | Supervisor | Created at | Updated at | Active | Staff | Superuser | ||
|---|---|---|---|---|---|---|---|---|---|---|
{{ user_obj.id }} |
{{ user_obj.email }} | {{ user_obj.username }} | {% if row.created_by and row.created_by.url %} {{ row.created_by.label }} {% elif row.created_by %} {{ row.created_by.label }} {% else %} — {% endif %} | {% if row.supervisor and row.supervisor.url %} {{ row.supervisor.label }} {% elif row.supervisor %} {{ row.supervisor.label }} {% else %} — {% endif %} | {{ row.created_at }} | {{ row.updated_at }} | {{ user_obj.is_active }} | {{ user_obj.is_staff }} | {{ user_obj.is_superuser }} | Open |
No users found.
{% endif %} {% endblock %}