{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load translations %} {% block content %} {% if form.errors or userform.errors or subscriptionform.errors %}

{% trans "Please fix errors in the form." %}

{% endif %}
{% csrf_token %}
{{ form.as_table }}

{% trans "You will receive chosen notifications via email for all your languages." %}

{{ subscriptionform.as_table }}
{{ userform.as_table }}
{% trans "Your name and email will appear as author on Git commits." %}
{% url 'django.contrib.auth.views.password_change' as pw_url %} {% blocktrans %}You can change password on separate page.{% endblocktrans %}
{% trans "Suggestions made" %} {{ profile.suggested }}
{% trans "Translations made" %} {{ profile.translated }}
{% trans "Last login" %} {{ request.user.last_login|date:"DATETIME_FORMAT" }}
{% trans "Registration date" %} {{ request.user.date_joined|date:"DATETIME_FORMAT" }}

{% gravatar request.user 128 %}

{% trans "Change your avatar at gravatar.com" %}

{% endblock %}