{% extends "base.html" %} {% block title %}{{ _('Database') }} #{{ source_database.id }}: {{ _('Link identity') }} — {{ service_name }}{% endblock %} {% block content %}

{{ _('Database') }} #{{ source_database.id }}: {{ source_database.get_name() }}

{% if not verified_linked and not linked %} {% if unverified_linked %}

{{ _("You have to confirm that you want to verify the federated identity using the currently signed-in user (%(username)s #%(user_id)s). After verifying the identity, it can be used for the federated login.", username=current_user.name, user_id=current_user.id) }}

{% else %}

{{ _("You have to confirm that you want to create a federated identity using the currently signed-in user (%(username)s #%(user_id)s).", username=current_user.name, user_id=current_user.id) }}

{% endif %}
{{ _('Cancel') }}
{% else %} {% if linked %}

{{ _("The currently signed in user (%(username)s #%(user_id)s) is already linked with a different user.", username=current_user.name, user_id=current_user.id) }}

{% else %}

{{ _("The currently signed in user (%(username)s #%(user_id)s) is already linked with you.", username=current_user.name, user_id=current_user.id) }}

{% endif %} {{ _('Back to federation overview') }} {% endif %}
{% endblock %}