From c32287904f82f9db1090217f2cc4a36589d16d8a Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 3 Jan 2011 03:18:43 +0100 Subject: Change merlin-session-wizard to django-formwizard --- ishtar/templates/file_wizard.html | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'ishtar/templates/file_wizard.html') diff --git a/ishtar/templates/file_wizard.html b/ishtar/templates/file_wizard.html index 4bb6a59c8..9ebf4adb3 100644 --- a/ishtar/templates/file_wizard.html +++ b/ishtar/templates/file_wizard.html @@ -2,20 +2,27 @@ {% load i18n %} {% load range %} {% block content %} +
{% csrf_token %}
-{% csrf_token %} -{{ form }} +{% if form.forms %} + {{ form.management_form }} + {% for formsetform in form.forms %} + {{ formsetform.as_table }} + {% endfor %} +{% else %} + {{ form.as_table }} +{% endif %}
{{ previous_fields|safe }} -
+ {% endblock %} -- cgit v1.2.3