{% extends "common/internal_page.html" %} {% block content %}

There are {{ num_active_users }} active users in the system. Click here to add a new user.

To modify an existing user's information, click on their name below. {% for u in all_users %} {% endfor %}
nameemailroleslast login
{{ u.last_name }}, {{ u.first_name }} {{ u.email }} {% if u.is_superuser %}superuser
{% endif %} {% for r in u.roles %}{% if forloop.counter0 %}
{% endif %} {{ r }} {% endfor %}
{{ u.last_login|date:"F j, Y P" }}
{% endblock %}