{% 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 %}

{% trans "Delete User Profile" %}

{% blocktrans trimmed %} If you'ld like to stop using this service and delete this user profile and all your data (especially all hosts and all domains created by this user), you can do it here. {% endblocktrans %}

{% trans "Delete User Profile" %}
{% endblock %}