{% 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 Registration Authority you are a registrar in. Clicking on the name of a Registration Authority to go to its home page.

{% if request.user.is_superuser %} {% 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 Super user You have complete access to all registration authorities, workgroups and items. You can add new user accounts.
{{ 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 %}