{% extends "socialaccount/connections.html" %} {% load i18n %} {% load allauth_ui %} {% load widget_tweaks %} {% block content %} {% trans "Account Connections" as heading %} {% if form.accounts %} {% blocktrans asvar subheading %} You can sign in to your account using any of the following third-party accounts: {% endblocktrans %} {% else %} {% trans "You currently have no third-party accounts connected to this account." as subheading %} {% endif %} {% #container heading=heading subheading=subheading %} {% if form.accounts %} {% url 'socialaccount_connections' as action_url %} {% #form form=form url=action_url render_fields="false" use_default_button="false" %} {% csrf_token %} {% for acc in form.fields.account.choices %} {% var account=acc.0.instance.get_provider_account %}
{% endfor %} {% /form %} {% endif %}

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

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