From a389359b74e842702fbb76ba31f2608c4a141c63 Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Fri, 27 May 2011 15:09:44 +0200 Subject: Added templates for mobile devices. --- templates/changepw/change_other_m.html | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 templates/changepw/change_other_m.html (limited to 'templates/changepw/change_other_m.html') diff --git a/templates/changepw/change_other_m.html b/templates/changepw/change_other_m.html new file mode 100644 index 0000000..df30d9d --- /dev/null +++ b/templates/changepw/change_other_m.html @@ -0,0 +1,41 @@ +{% extends "base_m.html" %} +{% block js %} +{% endblock %} +{% block title %}Change other{% endblock %} + +{% block header %}

Change other

{% endblock %} + +{% block content %} +

Change other

+{% if return_value == None %} +
{% csrf_token %} + + + + + + + + + + +
Some input:
+ +
+
+{% else %} + {% if return_value == 0 %} +

Updated successfully.

+ {% else %} +

Something went wrong. Please contact an administrator.

+

Return code: {{ return_value }}

+ {% endif %} +{% endif %} +{% endblock %} + +{% block footer %} +Back +Log out +{% endblock %} + + -- cgit v1.1