From 0fb514f0a73aef806b826348d043c68534af2745 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Tue, 8 Feb 2011 20:46:40 +0100 Subject: v1 --- templates/edit.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 templates/edit.html (limited to 'templates/edit.html') diff --git a/templates/edit.html b/templates/edit.html new file mode 100644 index 0000000..f896a52 --- /dev/null +++ b/templates/edit.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} +{% block content %} + {% block beforeform %} + {% endblock %} +
+
+

{{formtitle}}

+ + {% for field in form %} + + + + + {% endfor %} +
+ {% if not field.is_hidden %} +
{{ field.label_tag }}
+ {% endif %} + {% if field.errors %} +
{{ field.errors }}
+ {% endif %} +
+
{{ field }}
+
+
+
+
+ + +
+
+{% endblock %} \ No newline at end of file -- cgit v1.1