{% extends "account/base.html" %} {% load static %} {% load i18n %} {% load account socialaccount %} {% block head_title %}{{ user.username }}{% endblock head_title %} {% block inner %} {% if user.is_authenticated %} {% if user.sso_app_profile.picture %} picture {% endif %}

{{ user.username }}


{% for field in user_fields %} {% with field|first as field_name %} {% if field_name != 'picture' %}

{{ field|last }}

{% endif %} {% endwith %} {% endfor %}
{% trans "Update" %}
{% else %}

{% blocktrans %}You are not logged in.{% endblocktrans %}

{% trans "Login" %} {% trans "Register" %}
{% endif %} {% endblock inner %}