summaryrefslogtreecommitdiff
path: root/ishtar/templates/wizard_done.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-01-04 02:32:01 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-01-04 13:40:31 +0100
commit74ddd12c14e4f19b84db796780919516a76e414c (patch)
tree7b64b66e1dfa7d72ae5289dc194a720ac022b780 /ishtar/templates/wizard_done.html
parentbf6ed908e0184a7351953f4162ac250b0e8bbc7e (diff)
downloadIshtar-74ddd12c14e4f19b84db796780919516a76e414c.tar.bz2
Ishtar-74ddd12c14e4f19b84db796780919516a76e414c.zip
Save of wizard items (refs #51)
Diffstat (limited to 'ishtar/templates/wizard_done.html')
-rw-r--r--ishtar/templates/wizard_done.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/ishtar/templates/wizard_done.html b/ishtar/templates/wizard_done.html
new file mode 100644
index 000000000..468e8ed6a
--- /dev/null
+++ b/ishtar/templates/wizard_done.html
@@ -0,0 +1,12 @@
+{% 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>
+<p>{%trans "Item successfully saved"%}</p>
+</div>
+{% endblock %}