{% 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 %}Download as csv Name Username Department Role Email Date Joined {% for user in users %} {{user.name}} {{user.username}} {{user.department}} {{user.person_type}} {{user.email}} {{user.date_joined.date}} {% endfor %} {% endblock content %} {% block script %} {% endblock script %}