{% extends "base.html" %} {% load gravatar i18n %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% trans "Your profile" %}
{% csrf_token %} {{ basic_form.as_table }}
{% trans "Change profile" %}
{% trans "Password change" %}
{% csrf_token %} {{ pass_form.as_table }}
{% trans "Change password" %}
{% if services %}
{% trans "Sign in to:" %}
{% for service in services %}
{% endfor %}
{% endif %} {% endblock %}