{% extends "socialaccount/base.html" %} {% load i18n %} {% block head_title %}{% trans "Account Connections" %}{% endblock %} {% block whitebox %}

{% trans "Account Connections" %}

{% if form.accounts %}

{% blocktrans %}You have the following social accounts connected:{% endblocktrans %}

{% csrf_token %} {% include "account/_non_field_errors.html" %} {% for base_account in form.accounts %} {% with base_account.get_provider_account as account %}
{% endwith %} {% endfor %}
{% else %}

{% trans 'You currently have no social network accounts connected to this account.' %}

{% endif %}

OR
{% trans 'Add a third party account' %}
{% include "socialaccount/snippets/provider_list.html" with process="connect" %} {% include "socialaccount/snippets/login_extra.html" %}
{% endblock %}