{% extends 'base.html' %}
{% block content %}
- Home
- Groups
- {{ object }}
{{ object }}
{{ permission_count }} Permission{{ permission_count|pluralize }}
{% if permission_count %}
| App |
Model |
Actions |
{% for content_type, codenames in permissions %}
| {{ content_type.app_label }} |
{{ content_type.model }} |
{{ codenames|join:", " }} |
{% endfor %}
{% endif %}
{% if perms.auth.change_group and perms.accounts.change_user %}
Update
{% endif %}
{% if perms.auth.delete_group and perms.accounts.change_user %}
Delete
{% endif %}
{% if perms.accounts.view_user %}
{{ user_count }} User{{ user_count|pluralize }}
{% if user_count %}
| Username |
Email |
Remote? |
{% for user in users %}
| {{ user.username }} |
{{ user.email }} |
{% if user.is_remote %}Yes{% endif %} |
{% endfor %}
{% endif %}
{% endif %}
{% if perms.accounts.view_user %}
{{ service_account_count }} Service account{{ service_account_count|pluralize }}
{% if service_account_count %}
{% endif %}
{% endif %}
{% if perms.realms.view_realmgroupmapping %}
{{ realm_group_mapping_count }} Realm mapping{{ realm_group_mapping_count|pluralize }}
{% if realm_group_mapping_count %}
{% if perms.realms.view_realm %}
| Realm |
{% endif %}
Claim |
Value |
{% for realm_group_mapping in realm_group_mappings %}
{% if perms.realms.view_realm %}
| {{ realm_group_mapping.realm }} |
{% endif %}
{{ realm_group_mapping.claim }} |
{{ realm_group_mapping.value }} |
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}