1
{% extends "wlggz/base.html" %}
6
{% ifequal user profile.user %}
7
{% include "django_messages/inlines/navigation.html" %}
11
<div class="profile_item">
12
<h3 class="title">{% trans "Set GGZ password" %}</h3>
15
<form method="post" enctype="multipart/form-data">
16
<table width="100%" cellspacing="1" class="text">
17
{# FIXME: change the right color #}
18
{% if profile_form.errors %}
20
<td class="even" colspan="2">{{ profile_form.errors }}</td>
24
{% for field in ggz_form %}
27
<td colspan="2" class="{% cycle "odd" "even" %}">
28
<div class="errormessage">{{ field.errors }}</div>
33
<td {% ifequal field.name "signature" %} valign="top" {% endifequal %}class="{% cycle "odd" "even" %}">{{ field.label_tag }}:</td>
34
<td class="{% cycle "odd" "even" %}">{{ field }}
35
{% ifequal field.name "time_display" %}
36
<a href="/wiki/HomepageDocuTimeDisplay">Documented here</a>
43
<table class="bottom_line" width="100%">
45
<td><input type="submit" value="{% trans "Save" %}" /></td>