From 1bd352cb29b47949d68d4f6671e637a43c2ab747 Mon Sep 17 00:00:00 2001 From: Dusty Phillips Date: Fri, 27 Jun 2008 18:34:47 -0400 Subject: use newforms on todo list --- templates/general_form.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 templates/general_form.html (limited to 'templates/general_form.html') diff --git a/templates/general_form.html b/templates/general_form.html new file mode 100644 index 0000000..4c17481 --- /dev/null +++ b/templates/general_form.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} + +{% block content %} +
+

{{title}}

+
+ + {% for field in form %} + + + + + {% endfor %} + + + +
+ {{field.label}}: +
{{field.help_text}}
{{field}}
+ +
+
+
+{% endblock %} -- cgit v1.2.3-24-g4f1b