{% extends "authentic2/manager/role_common.html" %} {% load i18n staticfiles django_tables2 %} {% block breadcrumb %} {{ block.super }} {{ object }} {% endblock %} {% block page_title %} {% trans "Members" %} {% endblock %} {% block appbar %} {{ block.super }} {% if not object.admin_scope_ct_id and view.can_delete %} {% trans "Delete" %} {% endif %} {% if view.can_change and not object.admin_scope_ct_id %} {% trans "Modify description" %} {% trans "Permissions" %} {% trans "Managers" %} {% endif %} {% trans "Children roles" %} {% endblock %} {% block extra_scripts %} {{ block.super }} {{ choose_user_form.media }} {% endblock %} {% block main %} {% with row_link=1 url_name="a2-manager-user-edit" %} {% render_table table "authentic2/manager/role_members_table.html" %} {% endwith %} {% include "authentic2/manager/export_include.html" with export_view_name="a2-manager-role-members-export" %} {% if view.can_change %}
{% csrf_token %} {{ form }}
{% endif %} {% endblock %}