{% extends 'base.html' %} {% block content %}

{{ object }}

{{ permission_count }} Permission{{ permission_count|pluralize }}

{% if permission_count %} {% for content_type, codenames in permissions %} {% endfor %}
App Model Actions
{{ content_type.app_label }} {{ content_type.model }} {{ codenames|join:", " }}
{% 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 %} {% for user in users %} {% endfor %}
Username Email Remote?
{{ user.username }} {{ user.email }} {% if user.is_remote %}Yes{% endif %}
{% endif %} {% endif %} {% if perms.accounts.view_user %}

{{ service_account_count }} Service account{{ service_account_count|pluralize }}

{% if service_account_count %} {% for service_account in service_accounts %} {% endfor %}
Name
{{ service_account }}
{% 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 %} {% endif %} {% for realm_group_mapping in realm_group_mappings %} {% if perms.realms.view_realm %} {% endif %} {% endfor %}
RealmClaim Value
{{ realm_group_mapping.realm }}{{ realm_group_mapping.claim }} {{ realm_group_mapping.value }}
{% endif %} {% endif %} {% endblock %}