6
{% trans "Profile Editing" %} - {{ block.super }}
6
{% ifequal user profile.user %}
7
{% include "django_messages/inlines/navigation.html" %}
11
<div class="box_item_model fixed_site border">
12
<h3 class="title">{% trans "Profile editing" %}</h3>
14
{% if profile.avatar %}
15
<img src="{{ profile.avatar.url }}" />
18
<form method="post" enctype="multipart/form-data">
19
<table width="100%" cellspacing="1" class="text">
20
{# FIXME: change the right color #}
21
{% if profile_form.errors %}
23
<td class="even" colspan="2">{{ profile_form.errors }}</td>
27
{% for field in profile_form %}
30
<td colspan="2" class="{% cycle "odd" "even" %}">
31
<div class="errormessage">{{ field.errors }}</div>
35
{% ifequal field.name "delete_avatar" %}
36
{% if profile.avatar %}
38
<td class="{% cycle "odd" "even" %}">{{ field.label_tag }}:</td>
39
<td class="{% cycle "odd" "even" %}">{{ field }}
44
<td class="{% cycle "odd" "even" %} {%ifequal field.name "signature" %}show_left{% endifequal %}">{{ field.label_tag }}:</td>
45
<td class="{% cycle "odd" "even" %}">{{ field }}
46
{% ifequal field.name "time_display" %}
47
<a href="/wiki/HomepageDocuTimeDisplay">Documented here</a>
55
<div class="info_line">
56
<input type="submit" value="{% trans "Save" %}" />
62
<div class="box_item_model fixed_site border">
63
<div class="info_line show_left">
64
<a href="{% url auth_change_password %}">Change website password</a>
67
You will be redirected to an encrypted connections. Passwords are <b>not</b> transmitted in cleartext.
71
<div class="box_item_model fixed_site border">
72
<div class="info_line show_left">
73
<a href="{% url wlggz_changepw %}">Change online lobby password</a>
76
<b class="errormessage">WARNING: GGZ transmitts the password in cleartext. Choose a different password for online gaming.</b>
10
<h1>{% trans "Profile Editing" %}</h1>
12
<div class="blogEntry">
13
<form method="post" enctype="multipart/form-data" action=".">
15
{% for field in profile_form %}
18
{{ field.label_tag }}:
21
{% ifequal field.name "avatar"%}
22
{% if profile.avatar %}
23
<img class="posLeft" src="{{ profile.avatar.url }}" alt="Avatar" />
29
{% ifequal field.name "time_display" %}
30
<a href="/wiki/HomepageDocuTimeDisplay">Documented here</a>
33
<td class="errormessage">
41
<input type="submit" value="{% trans "Save" %}" />
47
<a href="{% url 'auth_password_change' %}">Change website password</a>
49
You will be redirected to an encrypted connection. The website password is <strong>not</strong> transmitted in cleartext.
52
<a href="{% url 'wlggz_changepw' %}">Change online gaming password</a>
54
<strong class="errormessage">WARNING: The online gaming password is transmitted in cleartext. Do not use your website password!</strong>