{% extends "base.html" %} {% load i18n %}{% load bootstrap %} {% block content %}

{% trans "User Profile of" %} {{ request.user.username }}


{% csrf_token %} {{ form|bootstrap_horizontal:"col-sm-3 col-lg-3" }}

{% trans "Associate with remote Account" %}

{% for backend in backends.not_associated %}
{% endfor %}

{% trans "Disassociate from remote Account" %}

{% for socauth in backends.associated %}
{% csrf_token %}
{% endfor %}
{% endblock %}