{% extends "socialaccount/base_manage.html" %}{% load i18n allauth %} {% block head_title %}{% trans "Account Connections" %}{% endblock %} {% block content %}

{% trans "Account Connections" %}

{% if form.accounts %}

{% blocktrans trimmed %}You can sign in to your account using any of the following third-party accounts:{% endblocktrans %}

{% csrf_token %}
{% for acc in form.fields.account.choices %} {% with account=acc.0.instance.get_provider_account %}
{{ account.get_brand.name }}
{% endwith %} {% endfor %}
{% else %}

{% blocktrans trimmed %}You currently have no third-party accounts connected to this account.{% endblocktrans %}

{% endif %}

{% trans 'Add a Third-Party Account' %}

{% include 'socialaccount/snippets/provider_list.html' with process='connect' %} {% include 'socialaccount/snippets/login_extra.html' %}
{% endblock %}