summaryrefslogtreecommitdiff
path: root/ishtar/templates
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-01-03 03:18:43 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-01-03 03:18:43 +0100
commitc32287904f82f9db1090217f2cc4a36589d16d8a (patch)
tree897092dfa26b9bce6578b03a09881733e88f9da0 /ishtar/templates
parent6c5de269a1b4ffa1d374c68525870978ea872543 (diff)
downloadIshtar-c32287904f82f9db1090217f2cc4a36589d16d8a.tar.bz2
Ishtar-c32287904f82f9db1090217f2cc4a36589d16d8a.zip
Change merlin-session-wizard to django-formwizard
Diffstat (limited to 'ishtar/templates')
-rw-r--r--ishtar/templates/file_done.html16
-rw-r--r--ishtar/templates/file_wizard.html19
2 files changed, 29 insertions, 6 deletions
diff --git a/ishtar/templates/file_done.html b/ishtar/templates/file_done.html
new file mode 100644
index 000000000..6bbeb53d4
--- /dev/null
+++ b/ishtar/templates/file_done.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% block content %}
+<ul id='form_path'>
+{% for step in previous_steps %}
+ <li>&raquo; <a href='?form_prev_step={{forloop.counter0}}'>{{step.form_label}}</a></li>
+{% endfor %}
+ <li class='current'>&raquo; <a href='#'>{{current_step.form_label}}</a></li>
+</ul>
+<div class='form'>
+<pre>
+{{ form_list|pprint }}
+</pre>
+</form>
+</div>
+{% endblock %}
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 %}
+<form action="." method="post">{% csrf_token %}
<ul id='form_path'>
-{% for step in extra_context.previous_steps %}
- <li>&raquo; <a href='{%url action-form CURRENT_ACTION step.slug%}'>{{step.label}}</a></li>
+{% for step in previous_steps %}
+ <li>&raquo; <button name="form_prev_step" value="{{forloop.counter0}}">{{step.form_label}}</button></li>
{% endfor %}
- <li class='current'>&raquo; <a href='{%url action-form CURRENT_ACTION extra_context.current_step.slug%}'>{{extra_context.current_step.label}}</a></li>
+ <li class='current'>&raquo; <a href='#'>{{current_step.form_label}}</a></li>
</ul>
<div class='form'>
-<form action="." method="post">{% csrf_token %}
<table>
-{{ form }}
+{% if form.forms %}
+ {{ form.management_form }}
+ {% for formsetform in form.forms %}
+ {{ formsetform.as_table }}
+ {% endfor %}
+{% else %}
+ {{ form.as_table }}
+{% endif %}
</table>
<input type="hidden" name="{{ step_field }}" value="{{ step0 }}" />
{{ previous_fields|safe }}
<input type="submit" value="{% trans "Validate" %}"/>
-</form>
</div>
+</form>
{% endblock %}