{% extends "base.html" %} {% load i18n %} {% load socialprofile_tags %} {% block headtitle %}{% trans "Profile for " %}{{ user.username }}{% endblock %} {% block header %} {% trans "Cancel" %} {% trans "Profile" %} {% trans "Done" %} {% endblock %} {% block content %} {% if user.social_profile.image_url %} {% endif %} {% csrf_token %} {{ form.as_ul }} {% trans "Social Connections" %} {% if user.social_auth.all.count == 1 %} {% with only_connection=user.social_auth.all|first %} {{ only_connection.provider|social_provider_name }} {% trans "is your only means of authentication, it cannot be removed." %} {% endwith %} {% else %} {% for user_social_auth in user.social_auth.all %} {% trans "Disconnect" %} {{ user_social_auth.provider|social_provider_name }} {% endfor %} {% trans "Add Social Connection" %} {% endif %} {% trans "Delete Account" %} {% endblock %}
{{ only_connection.provider|social_provider_name }} {% trans "is your only means of authentication, it cannot be removed." %}