{% extends 'researcher_workspace/staff/user_search_base.html' %} {% load mathfilters %} {% block breadcrumb %} {{ block.super }} {% endblock breadcrumb %} {% block content %} {{ block.super }}

Graph of number of 'Active' users over time

'Active' refers to users who are marked as 'Active' in the database. This is a permission that classifies whether a user is allowed to log into the site or not

Table of 'Active' users

{% csrf_token %}
{% for user in users %} {% endfor %}
Name Username Department Role Email Date Joined
{{user.name}} {{user.username}} {{user.department}} {{user.person_type}} {{user.email}} {{user.date_joined.date}}
{% endblock content %} {% block script %} {% endblock script %}