{% extends "organization/organization_dashboard_base.html" %} {% load static %} {% block title %} Manage Roles {% endblock title %} {% block description %} Oversee and manage roles within your domains. Add new managers, view existing ones, and ensure efficient role management for smooth operations. {% endblock description %} {% block keywords %} Manage Roles, Role Management, Add Managers, View Managers, Domain Management, User Roles {% endblock keywords %} {% block og_title %} Manage Roles - Efficient Role Management {% endblock og_title %} {% block og_description %} Oversee roles within your domains efficiently. Add new managers, view and manage existing ones to ensure smooth operations. {% endblock og_description %} {% block body %}

Manage Roles

{% for domain in domains %}

{{ domain.name }}

{% for manager in domain.managers %}
profile

{{ manager.username }}

Domain Manager

{% if domain.organization_admin == request.user %} {% endif %}
{% endfor %}
{% endfor %}
{% endblock body %} {% block js %} {% endblock js %}