{% extends 'admin/base_site.html' %} {% block title %}Users{% endblock %} {% block page_title %}User Management{% endblock %} {% block nav_users %}active{% endblock %} {% block topbar_actions %} + Create User {% endblock %} {% block content %}
| # | User | Type | Role | Status | Joined | Quick Role | Actions |
|---|---|---|---|---|---|---|---|
| {{ u.id }} |
{{ u.username }}
{{ u.email }}
{% if u.is_superuser %}Superadmin{% endif %}
|
{{ u.account_type|title }} | {{ u.role }} | {% if u.is_active %}Active{% else %}Inactive{% endif %} | {{ u.date_joined|date:"M d, Y" }} | {% if not u.is_superuser %} {% else %}-{% endif %} |
Edit
{% if request.user.is_superuser and not u.is_superuser %}
{% if u.role != 'Admin' %}
{% endif %}
{% if u.role != 'Organiser' %}
{% endif %}
{% endif %}
{% if not u.is_superuser and u.id != request.user.id %}
{% endif %}
|
| No users found. | |||||||