{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans 'Your Profile' %}{% endblock title %} {% block content %}

{% trans 'Your Profile' %}

{% if confirmed_emails or confirmed_openids %}

{% trans 'You have the following confirmed email addresses and OpenIDs:' %}

{% endif %} {% if unconfirmed_emails or unconfirmed_openids %}

{% trans 'You have the following unconfirmed email addresses and OpenIDs:' %}

{% endif %}

{% if not max_emails %} {% trans 'Add a new email address' %} | {% endif %} {% trans 'Add a new OpenID' %}

{% if photos %}

{% trans 'Here are the photos you have uploaded/imported:' %}

{% endif %} {% if not max_photos %}

{% trans 'Upload a new photo' %}

{% endif %}

{% trans 'Account settings' %}

{% if has_password %}

{% trans 'Change your password' %}

{% else %}

{% trans 'Set a password' %}

{% endif %}

{% trans 'Export your data' %}

{% trans 'Permanently delete your account' %}

{% endblock content %}