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

{% if request.user.has_usable_password %}{% trans "Change password" %}{% else %}{% trans "Set password" %}{% endif %}

{% trans "You can manage third party identities which are associated to this account." %}

{% trans "Currently associated:" %}

{% for assoc in associated %} {% endfor %}
{% trans "Identity" %} {% trans "User ID" %} {% trans "Action" %}
{{ assoc.provider }} {{ assoc.uid }} {% trans "Disconnect" %}
{% if new_backends %}

{% trans "Add new association:" %}

{% for name in new_backends %} {{ name }} {% endfor %} {% endif %}
{% with request.user as user %} {% include 'user-activity.html' %} {% endwith %}

{% url 'user_page' user=request.user.username as user_page%} {% trans "Your public profile:" %} {{ user_page }}

{% trans "By registering you agree to use your name and email in Git commits and provide your contribution under license defined by each translated project." %}

{% if licenses %}

{% trans "Following projects have explicitly specified their licensing and copyright conditions:" %}

{% for project in licenses %}
{{ project.name }}
{% if project.license_url %} {{ project.license }}

{% else %} {{ project.license }} {% endif %}
{% endfor %}
{% endif %}
{% if enable_avatars %} {% endif %}
{% show_message 'warning' _('Removal of the account deletes all your private data.') %}

{% trans "Remove my account" %}

{% csrf_token %}
{% endblock %}