{% extends "aristotle_mdr/user/userHome.html" %} {% load aristotle_tags %} {% block title %}Current members{% endblock %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with activeTab='adminTools' %} {% endblock %} {% block page %}

Current members of this Registry

{% if page_obj.has_other_pages %} Showing {{ page_obj.start_index }} - {{ page_obj.end_index }} of {{ paginator.count }} results. {% else %} Showing {{ paginator.count }} results. {% endif %}
{% for user in page_obj.object_list %} {% with count=user|distinct_workgroups_count %} {% endwith %} {% endfor %}
User Active Teams Role
{% include "aristotle_mdr/users_management/helper/user_table_display.html" with user=user %} {{user.is_active}}{{count}} team{{ count|pluralize }}
{% include "aristotle_mdr/helpers/paginator.html" with page=page_obj %}
About active and inactive users

To ensure users actions are retained for auditing purposes, user accounts are never deleted from the registry. Instead their active status can be altered to either allow or prevent them from authenticating against the system.
In this registry the following definitions and restrictions apply

Active
An active user is able to log into the system, they can be added to workgroups, recieve notifications and create metadata.
Inactive
An inactive user is prevented from logging into the system, and will not be able to interact with the system in a way that requires an account. They will be able to interact with the system like an unauthenticated user who can see the registry.

{% endblock %}