{% extends "aristotle_mdr/user/userHome.html" %} {% load aristotle_tags %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with activeTab='profile' %} {% 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 wg in workgroups %} {% endfor %} {% for ra in registration_authorities %} {% 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.
{{ wg.name }} Workgroup {{ wg.role }} {% if wg.role == 'Manager' %} You can edit this workgroup, and can assign existing users as viewers. submitters, stewards or managers to this workgroup. {% elif wg.role == '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. {% elif wg.role == '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. {% elif wg.role == 'Viewer' %} You can view content in this workgroup and participate in discussions in this workgroup. {% endif %}
{{ ra.name }} Registration Authority {{ ra.role }} {% if ra.role == 'Manager' %} You can edit this registration authority, and can assign existing users as registrars or managers to this registration authority. {% elif ra.role == 'Registrar' %} You can alter the registration status of items that are marked Ready to Review. {% endif %}
{% endblock %}