{% extends 'base.html' %} {% load inventory_extras ui_extras %} {% block content %}

{{ object }}

{% if not request.realm_authentication_session.is_remote %}
{% csrf_token %}
{% endif %}

Realm

{% if perms.realms.change_realm and not request.realm_authentication_session.is_remote %} {% url 'realms:update' object.uuid as url %} {% button 'UPDATE' url "Edit Realm" %} {% endif %}
{% 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 %}
User portal {{ object.user_portal|yesno }}
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:"-" }}
Custom attr. 1 claim {{ object.custom_attr_1_claim|default:"-" }}
Custom attr. 2 claim {{ object.custom_attr_2_claim|default:"-" }}
{% if scim_root_url %}SCIM root URL{% else %}SCIM enabled?{% endif %} {% if scim_root_url %} {{ scim_root_url }} {% else %} No {% endif %}
Group{{ group_count|pluralize }} ({{ group_count }}) {% if groups_url %} View all groups {% else %} - {% endif %}
User{{ user_count|pluralize }} ({{ user_count }}) {% if users_url %} View all users {% else %} - {% endif %}
{{ name }} {% if hidden %} {% else %} {{ value }} {% endif %}
{% created_updated_at object %}
{% include "realms/_realm_group_mappings.html" with hide_realm="True" %} {% include "realms/_role_mappings.html" with hide_realm="True" %} {% endblock %} {% block extrajs %} {% endblock %}