1 {% extends "base_content.html" %}
4 {% block title %}{% spaceless %}{% trans "Account functions" %}{% endspaceless %}{% endblock %}
6 <style type="text/css" media="screen">
8 dt, dd { padding:0 0 0.35em 0; }
9 dt { float: left; width: 21ex; }
10 dd { margin-left: 23ex; }
12 #settings-options, #settings-intro { padding: 4em 1.5em;}
13 #settings-options { min-height: 300px; border-left: 1px solid #333;}
15 #settings-options h5 { font-weight: bold;}
21 <h3><strong>{{ request.user.username }} {% trans "Profile" %}</strong></h3>
23 <div id="settings-options">
25 <p class="error">{{ msg }}</p>
28 <dl class="list-item">
29 <dt>» <a href="{% url "user_changepw" %}">{% trans "Change password" %}</a></dt>
30 <dd>{% trans "Give your account a new password." %}</dd>
32 <dt>» <a href="{% url "user_changeemail" %}">{% trans "Change email " %}</a></dt>
33 <dd>{% trans "Add or update the email address associated with your account." %}</dd>
35 <dt>» <a href="{% url "user_changeopenid" %}">{% trans "Change OpenID" %}</a></dt>
36 <dd>{% trans "Change openid associated to your account" %}</dd>
39 <dt>» <a href="{% url "user_delete" %}">{% trans "Delete account" %}</a></dt>
40 <dd>{% trans "Erase your username and all your data from website" %}</dd>
45 <!-- end settings.html -->