{% extends "base.html" %} {% load i18n %} {% load translations %} {% load authnames %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {% trans "Your profile" %}
  • {% endblock %} {% block content %} {% if form.errors or userform.errors or subscriptionform.errors %} {% show_message "error" _("Please fix errors in the form.") %} {% endif %}
    {% csrf_token %}

    {% trans "Languages" %}

    {{ form|crispy }}

    {% trans "Preferences" %}

    {{ usersettingsform|crispy }}
    {% with user.project_set.all as managed_projects %} {% if managed_projects %}

    {% trans "Managed projects" %}

    {% for project in user.project_set.all %} {{ project }} {% endfor %}

    {% trans "You will automatically receive important notifications on managed projects." %}

    {% endif %} {% endwith %}

    {% trans "Subscribed projects" %}

    {% crispy subscriptionform %}

    {% trans "Account" %}

    {{ userform|crispy }}

    {% trans "User identities" %}

    {% trans "You can manage identities which are associated to this account and which can be used to log in." %}

    {% trans "Currently associated:" %}

    {% for assoc in associated %} {% endfor %}
    {% trans "Identity" %} {% trans "User ID" %} {% trans "Action" %}
    {% trans "Password" %} {{ request.user.username }} {% if request.user.has_usable_password %}{% trans "Change password" %}{% else %}{% trans "Set password" %}{% endif %}
    {% auth_name assoc.provider %} {{ assoc.uid }} {% trans "Disconnect" %}
    {% if new_backends %}

    {% trans "Add new association:" %}

    {% for name in new_backends %} {% auth_name name %} {% endfor %} {% endif %}

    {% trans "Removal" %}

    {% trans "Removal of the account deletes all your private data." %}

    {% trans "Your summary" %}

    {% 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 }}
    {% if enable_avatars %} {% endif %}

    {% trans "Licenses" %}

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

    {% if licenses %}

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

    {% for component in licenses %} {% endfor %}
    {% trans "Project" %}{% trans "License" %}
    {{ component }} {% if component.license_url %} {{ component.license }}

    {% else %} {{ component.license }} {% endif %}
    {% endif %}
    {% csrf_token %}
    {% endblock %}