{# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for #} {# more information about the licensing of this file. #} {% extends "layout.html" %} {% block title %} {{ _("Authentication bindings") }} {% endblock %} {% block column %} {{ template_helper.call('preferences_menu',current='bindings') | safe }} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

{{_("Authentication bindings")}}

{% if error %}
{{msg}}
{% elif msg %}
{{msg}}
{% endif %}
{% for id, auth_method in auth_methods.items() %} {% if id in bindings.keys() %}
{{ auth_method.get_name() }}
{{ auth_method.get_imlink() | safe }}

{{ _("Identifier") }}: {{bindings[id][0]}}

{% if bindings[id][1] %}

{{ _("Additional fields") }}:

    {% for key, val in bindings[id][1].items() %}
  • {{id}}.{{key}} : {{val}}
  • {% endfor %}
{% endif %}
{% endif %} {% endfor %}

{{_("Add a new binding")}}

{% endblock %}