{% extends "wagtailadmin/base.html" %}
{% block titletag %}Users{% endblock %}
{% block bodyclass %}menu-users{% endblock %}
{% block content %}
Users
Name | Username | Level | Status |
---|---|---|---|
{{ user.get_full_name|default:user.username }} |
{{ user.username }} | {% if user.is_superuser %}Admin{% endif %} | {% if user.is_active %}Active{% else %}Inactive{% endif %} |
{% endfor %}