summaryrefslogtreecommitdiff
path: root/templates/changepw/change_other.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/changepw/change_other.html')
-rw-r--r--templates/changepw/change_other.html14
1 files changed, 3 insertions, 11 deletions
diff --git a/templates/changepw/change_other.html b/templates/changepw/change_other.html
index 4351b45..c3fa637 100644
--- a/templates/changepw/change_other.html
+++ b/templates/changepw/change_other.html
@@ -4,26 +4,18 @@
{% block title %}Change other{% endblock %}
{% block content %}
<h2>Change other</h2>
-{% if form %}
- <p class="error">
- {{ form.non_field_errors }}
- </p>
+{% if return_value == None %}
<form action="{% url changeother %}" method="post" autocomplete="off">{% csrf_token %}
<table>
- {% for field in form %}
<tr>
- <td class="fielderrors">{{ field.errors }}</td>
+ <td class="formlabel">Input:</td>
</tr>
<tr>
- <td class="formlabel">{{ field.label_tag }}:</td>
- </tr>
- <tr>
- <td class="formfield">{{ field }}</td>
+ <td class="formfield"><input type="textarea" name="input" /></td>
</tr>
<tr>
<td class="formbutton"><input type="submit" value="Submit" /></td>
</tr>
- {% endfor %}
</table>
</form>
{% else %}