From 77ceee6e23f2a8daaf5e3247970953313aebcdd3 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Mon, 28 Feb 2011 22:07:19 +0100 Subject: wizards --- templates/edit_fieldsets.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 templates/edit_fieldsets.html (limited to 'templates/edit_fieldsets.html') diff --git a/templates/edit_fieldsets.html b/templates/edit_fieldsets.html new file mode 100644 index 0000000..75885d7 --- /dev/null +++ b/templates/edit_fieldsets.html @@ -0,0 +1,41 @@ +{% extends "tree.html" %} +{% block widgets %}{% endblock %} +{% block content %} + {% block beforeform %} + {% endblock %} +
+
+

{{formtitle}}

+ {% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %} + {% for fieldset in form.fieldsets %} +
+ {% if fieldset.legend %} + {{ fieldset.legend }} + {% endif %} + {% if fieldset.description %} +

{{ fieldset.description }}

+ {% endif %} + +
+ {% endfor %} +
+
+
+ + + +
+
+{% endblock %} \ No newline at end of file -- cgit v1.1