{% extends "socialaccount/base_manage.html" %} {% load i18n %} {% block title %} {% trans "Account Connections" %} {% endblock title %} {% block breadcrumbs %} {{ block.super }} {% endblock breadcrumbs %} {% block page.content %} {# --- Connected accounts section --- #} {% if form.accounts %} {% for account in form.accounts %} {% with provider_account=account.get_provider_account %}
{{ provider_account }}
{% csrf_token %}
{% endwith %} {% endfor %}
{% else %} {% trans "You currently have no third-party accounts connected to this account." %} {% endif %} {# --- Add connections section --- #} {% include "socialaccount/snippets/provider_list.html" with process="connect" %} {% include "socialaccount/snippets/login_extra.html" %} {% endblock page.content %}