{% extends base_template %} {% load i18n %} {% block card %} {% comment %} Render into the ``card`` slot — works under ``conjunto/app_base.html`` (which exposes ``card`` as the inner content slot) AND under medux's ``common/administration.html`` (where ``card`` lands inside the 2-column admin pane on the right). {% endcomment %}

{% if view.icon %}{% endif %}{% trans "Roles" %}

{% if roles %}
{% for role in roles %} {% endfor %}
{% trans "Name" %} {% trans "Label" %} {% trans "Description" %} {% trans "Members" %}
{{ role.name }} {% if role.is_system %} {% trans "System" %} {% endif %} {{ role.label }} {{ role.description|default:"—"|truncatewords:10 }} {{ role.member_count }}
{% if not role.is_system %} {% endif %}
{% else %}

{% trans "No roles" %}

{% trans "No roles have been defined for this tenant yet." %}

{% endif %}
{% endblock %}