{% extends "simpleauth/base.html" %} {% load i18n %} {% 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 content %}

{% trans "Any settings associated with your account are presented and may be modified here." %}

{% if msg %}

{{ msg }}

{% endif %}
{% url notification.views.notices as notices_url %} {% if notices_url %}
ยป {% trans "Change notifications" %}
{% trans "Change notifications associated to your account" %}
{% endif %}
{% endblock %}