{% extends "authentic2/base-page.html" %} {% load i18n %} {% block page-title %} {{ block.super }} - {{ view.title }} {% endblock %} {% block breadcrumb %} {{ block.super }} {{ view.title }} {% endblock %} {% block content %}
{% 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 %}