{% extends "aristotle_mdr/user/userHome.html" %} {% load aristotle_tags %} {% block collapse-link %} My Roles {% endblock %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with activeTab='roles' %} {% endblock %} {% block page %}

{% block title %}My Roles{% endblock %}

Below is a list of every group you are a member of, the roles you have and the actions you can perform in those groups.

{% if requests.user.is_superuser %} {% endif %} {% if perms.aristotle_mdr.is_registry_administrator %} {% endif %} {% if perms.aristotle_mdr.can_create_metadata %} {% endif %} {% for ra in request.user.registrar_in.all %} {% endfor %} {% for ra in request.user.registrationauthority_manager_in.all %} {% endfor %} {% for wg in request.user.workgroup_manager_in.all %} {% endfor %} {% for wg in request.user.steward_in.all %} {% endfor %} {% for wg in request.user.submitter_in.all %} {% endfor %} {% for wg in request.user.viewer_in.all %} {% endfor %}
Group Type Role Description
- Registry Superuser You have complete access to all registration authorities, workgroups and items. You can add new user accounts.
- Registry Administrator You have access to edit registry settings, and add registration authorities and workgroups, and invite additional users.
- Registry Creator You can create new metadata items in this registry. Once saved you can edit your own metadata, but if it has been endorsed by a Registration Authority or moved into a workgroup you may be prevented from making further changes.
{{ ra.name }} Registration Authority Registrar You can alter the registration status of items that are marked Ready to Review.
{{ ra.name }} Registration Authority Manager You can edit this registration authority, and can assign existing users as registrars or managers to this registration authority.
{{ wg.name }} Workgroup Manager You can edit this workgroup, and can assign existing users as viewers. submitters, stewards or managers to this workgroup.
{{ wg.name }} Workgroup Steward You can create and edit content in this workgroup and can edit content that has been progressed to a 'locked' state by a registrar.
{{ wg.name }} Workgroup Submitter You can create and edit content in this workgroup, but cannot edit content that has been progressed to a 'locked' state by a registrar.
{{ wg.name }} Workgroup Viewer You can view content in this workgroup and participate in discussions in this workgroup.
{% endblock %}