summaryrefslogtreecommitdiff
path: root/ishtar/templates/wizard_done.html
diff options
context:
space:
mode:
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 %}