{% extends "authopenid/base.html" %} {% load i18n %} {% block head %} {% endblock %} {% block title %}{{ block.super }} | {% trans "Your Profile" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "Profile" %}{% endblock %} {% with user_username|capfirst as user %} {% block content_title %}

{% blocktrans %}Your profile, {{ user }}{% endblocktrans %}

{% endblock %} {% endwith %} {% block body %}

{% trans "This is where you can make changes to your account." %}

{% if msg %}

{{ msg }}

{% endif %}
» {% trans "Change password" %}
{% trans "Give your account a new password." %}
» {% trans "Change email" %}
{% trans "Add or update the email address associated with your account." %}
{% if is_openid %}
» {% trans "Change openid url" %}
{% trans "Change openid associated to your account" %}
{% endif %} {% url notification.views.notices as notices_url %} {% if notices_url %}
» {% trans "Change notifications" %}
{% trans "Change notifications associated to your account" %}
{% endif %}
» {% trans "Delete account" %}
{% trans "Erase your username and all your data from website" %}
{% endblock %}