{% extends "wagtailadmin/base.html" %} {% load gravatar %} {% block titletag %}Users{% endblock %} {% block bodyclass %}menu-users{% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title="Users" add_link="wagtailusers_create" add_text="Add a user" %}
Name {% if ordering == "name" %} {% else %} {% endif %} | Username {% if ordering == "username" %} {% else %} {% endif %} | Level | Status |
---|---|---|---|
|
{{ user.username }} | {% if user.is_superuser %}Admin{% endif %} | {% if user.is_active %}Active{% else %}Inactive{% endif %} |
{% endfor %}