{% extends "admin/base.html" %} {% block title %}Users{% endblock %} {% block content %}

User Management

{% for u in users %} {% endfor %}
Name Email Role Actions
{{ u.full_name }} {{ u.email }} {% if u.is_superuser %} Superuser {% else %} Admin {% endif %} {% if u.id != user.id %}
{% else %} It's you {% endif %}
{% endblock %}