{% extends "core/base.html" %} {% load i18n material_form %} {% block browser_title %}{% trans "Connections" %}{% endblock %} {% block page_title %}{% trans "Connections" %}{% endblock %} {% block content %} {% if form.accounts %} {% csrf_token %}
{% for base_account in form.accounts %} {% with base_account.get_provider_account as account %}
{{ account.get_brand.name }}

{{ account }}

{% endwith %} {% endfor %}
{% else %}

{% trans 'You currently have no third-party accounts connected to this account.' %}

{% endif %}
{% trans 'Add a Third-party Account' %}
{% include "socialaccount/snippets/provider_list.html" with process="connect" %} {% include "socialaccount/snippets/login_extra.html" %} {% endblock %}