{% extends "../base.html" %} {% block page_title %}Switch Active Role{% endblock %} {% block content %}

Switch Active Role

Change which assigned role is active for this session. This affects dashboard and menu visibility only.

{% if form.errors %} {% endif %}
{% csrf_token %}

Role Status

Current active role

{{ active_role_name|default:staff_primary_role }}


All assigned roles

{% for role in roles %} {{ role.name }} {% endfor %}
{% endblock %}