{% extends "authentic2/manager/role_common.html" %} {% load i18n static %} {% block breadcrumb %} {{ block.super }} {{ object }} {{ object }} {% endblock %} {% block appbar %}

{% trans "Usage summary" %}

{% endblock %} {% block main %}

{% trans "Contains permissions of roles:" %}

{% if parents %} {% else %}

{% trans "This role doesn't contain permissions of any other role." %}

{% endif %}

{% trans "Is administered by roles:" %}

{% if admin_roles %} {% else %}

{% trans "This role is not administred by any other role." %}

{% endif %}

{% trans "Direct usage" %}

{% for type_object in summary_data.type_objects %}

{{ type_object.text }}

{% endfor %}

{% trans "Included roles usage" %}

{% for type_object in summary_data.parents_type_objects %}

{{ type_object.text }}

{% endfor %}
{% endblock %}