From a9526bd837d3615cab0e7d73deff11e4c7e55db6 Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Tue, 17 May 2011 15:27:39 +0200 Subject: Added code for changing other attributes. --- templates/changepw/change_other.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 templates/changepw/change_other.html (limited to 'templates/changepw/change_other.html') diff --git a/templates/changepw/change_other.html b/templates/changepw/change_other.html new file mode 100644 index 0000000..492e98c --- /dev/null +++ b/templates/changepw/change_other.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} +{% block js %} +{% endblock %} +{% block title %}Change other{% endblock %} +{% block content %} +

Change other

+{% if form %} +

+ {{ form.non_field_errors }} +

+
{% csrf_token %} + + {% for field in form %} + + + + + + + {% endfor %} +
{{ field.errors }}
{{ field.label_tag }}:{{ field }}
+ +
+{% else %} +

Something went wrong. Please contact an administrator.

+

Return code: {{ return_value }}

+{% endif %} + +

+ Back
+ Log out +

+{% endblock %} + -- cgit v1.1