{% extends "base.html" %} {% load backend_utils %} {% block autocomplete %} {% endblock %} {% comment %} Modified from https://raw.githubusercontent.com/python-social-auth/social-examples/master/example-common/templates/home.html {% endcomment %} {% block inline_css %} {% endblock %} {% block content %}

Sign in with one of these accounts:

{% if user.is_authenticated %}
You are logged in as {{ user.username }}
{% endif %}
{% for sublist in available_backends|social_backends %}
{% for name, backend in sublist %} {% associated backend %} {% if association %}
Disconnect {{ backend|backend_name }}
{% else %} {{ backend|backend_name }} {% endif %} {% endfor %}
{% endfor %}
Logout
{% endblock %}