diff options
| 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 |
| commit | c32287904f82f9db1090217f2cc4a36589d16d8a (patch) | |
| tree | 897092dfa26b9bce6578b03a09881733e88f9da0 /ishtar/templates/file_done.html | |
| parent | 6c5de269a1b4ffa1d374c68525870978ea872543 (diff) | |
| download | Ishtar-c32287904f82f9db1090217f2cc4a36589d16d8a.tar.bz2 Ishtar-c32287904f82f9db1090217f2cc4a36589d16d8a.zip | |
Change merlin-session-wizard to django-formwizard
Diffstat (limited to 'ishtar/templates/file_done.html')
| -rw-r--r-- | ishtar/templates/file_done.html | 16 |
1 files changed, 16 insertions, 0 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>» <a href='?form_prev_step={{forloop.counter0}}'>{{step.form_label}}</a></li> +{% endfor %} + <li class='current'>» <a href='#'>{{current_step.form_label}}</a></li> +</ul> +<div class='form'> +<pre> +{{ form_list|pprint }} +</pre> +</form> +</div> +{% endblock %} |
