{% extends "socialaccount/base_manage.html" %} {% comment %} SPDX-FileCopyrightText: 2023 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load allauth account socialaccount %} {% block head_title %} Account Connections {% endblock head_title %} {% block content %} {% include "allauth/elements/heliport_heading.html" with text="Account Connections" %} {% if form.accounts %}

You can sign in to your account using any of the following third-party accounts:

{% csrf_token %}
{% include "allauth/elements/heliport_form_errors.html" with errors=form.non_field_errors %} {% for base_account in form.accounts %} {% with base_account.get_provider_account as account %}
{% endwith %} {% endfor %}
{% else %}

You currently have no social network accounts connected to this account.

{% endif %}

Add a third party account:

{% include "allauth/elements/heliport_socialaccounts_list_form.html" with process="connect" %} {% endblock content %}