{% extends "authentic2/base-page.html" %} {% load i18n %} {% if service_custom_appearance %} {% block css %} {{ block.super }} {% firstof generic_service_colour service_colour service_ou_colour as colour %} {% if colour %} {% endif %} {% endblock %} {% endif %} {% block title %} {{ view.title }} {% endblock %} {% block breadcrumb %} {{ block.super }} {{ view.title }} {% endblock %} {% block content %}
{% if service_custom_appearance %} {% firstof generic_service_name service.name service.ou.name as name %} {% firstof generic_service_logo_url service_logo_url service_ou_logo_url as logo_url %}

{% trans "Remote service authentication" %}

{% blocktrans %}You logged in from service {{ name }}.{% endblocktrans %}
{% if logo_url %} {% if service.home_url or generic_service_home_url %} {% endif %} {% if service.home_url or generic_service_home_url %} {% endif %} {% endif %} {% endif %}
{% if attributes %}
{% for attribute in attributes %}
{{ attribute.attribute.label|capfirst }} :
{% if attribute.values|length == 1 %} {{ attribute.values.0 }} {% else %}
    {% for value in attribute.values %}
  • {{ value }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if allow_email_change %}

{% trans "Change email" %}

{% endif %} {% if allow_profile_edit %}

{% trans "Edit account data" %}

{% endif %} {% if allow_authorization_management %}

{% trans "Manage service authorizations" %}

{% endif %} {% if allow_account_deletion %}

{% trans "Delete account" %}

{% endif %}

{% trans "Credentials" %}

{% for html_block in frontends_block %} {{ html_block|safe }} {% endfor %} {% if federation_management %}

{% trans "Federation management" %}

    {% for federation in federation_management %}
  • {% csrf_token %} {{ federation.name }} {% for key, value in federation.hidden_inputs.items %} {% endfor %} {% for button_name, button_label in federation.buttons %} {% endfor %}
  • {% endfor %}
{% endif %}
{% endblock %}