1
{% extends "wlprofile/base.html" %}
6
{% trans "Profile Editing" %} - {{ block.super }}
9
{% block edit_profile %}class="active"{% endblock %}
11
{% block content_header %}
12
<h1>{% trans "Profile Editing" %}</h1>
15
{% block content_main %}
16
<div class="blogEntry">
17
<form method="post" enctype="multipart/form-data" action=".">
19
{% for field in profile_form %}
25
{% ifequal field.name "avatar"%}
26
{% if profile.avatar %}
27
<img class="posLeft" src="{{ profile.avatar.url }}" alt="Avatar" />
33
{% ifequal field.name "time_display" %}
34
<a href="/wiki/HomepageDocuTimeDisplay">Documented here</a>
37
<td class="errormessage">
45
<input type="submit" value="{% trans "Save" %}" />
49
<h2>Other options:</h2>
51
<li><a href="{% url 'auth_password_change' %}">Change website password</a></li>
52
<li><a href="{% url 'wlggz_changepw' %}">Change online gaming password</a></li>
53
<li><a href="{% url 'delete_me' %}">Delete me</a></li>