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

Realm {{ object }}

{% for name, value, hidden in object.backend_instance.extra_attributes_for_display %} {% endfor %}
Attribute Value
Name {{ object }}
Backend {{ object.backend }}
Enabled for login {{ object.enabled_for_login|yesno }} {% if object.enabled_for_login %} — {% if object.login_session_expiry == 0 %} The user’s session cookie will expire when the user’s Web browser is closed. {% else %} {% if object.login_session_expiry > 0 %} The user’s session cookie will expire after {{ object.login_session_expiry }}s. {% else %} The IDP response NotOnOrAfter value will be used for the session expiry. {% endif %} {% endif %} {% endif %}
Username claim {{ object.username_claim|default:"-" }}
Email claim {{ object.email_claim|default:"-" }}
First name claim {{ object.first_name_claim|default:"-" }}
Last name claim {{ object.last_name_claim|default:"-" }}
Full name claim {{ object.full_name_claim|default:"-" }}
{{ name }} {% if hidden %} {% else %} {{ value }} {% endif %}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}
{% if not request.realm_authentication_session.is_remote %}
{% csrf_token %} {% if perms.realms.change_realm %} Update {% endif %}

{% endif %} {% if perms.realms.view_realmgroupmapping %}

{{ group_mapping_count }} Group mapping{{ group_mapping_count|pluralize }}

{% if not request.realm_authentication_session.is_remote and perms.realms.add_realmgroupmapping %}

Create

{% endif %} {% if group_mapping_count %} {% for group_mapping in group_mappings %} {% with group_mapping.group as group %} {% endwith %} {% endfor %}
Claim Value Group
{{ group_mapping.claim }} {{ group_mapping.value }} {% if perms.auth.view_group %} {{ group }} {% else %} {{ group }} {% endif %} {% if not request.realm_authentication_session.is_remote and perms.realms.change_realmgroupmapping %} {% endif %} {% if not request.realm_authentication_session.is_remote and perms.realms.delete_realmgroupmapping %} {% endif %}
{% endif %} {% endif %} {% endblock %} {% block extrajs %} {% endblock %}