diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-04 02:32:01 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-04 02:32:01 +0100 |
| commit | b3972516226e942cc1d92e7a36275b9433cda3f6 (patch) | |
| tree | e0496393454763597ca2d1334b6209709b5730cc /ishtar/templates/wizard_done.html | |
| parent | bf6ed908e0184a7351953f4162ac250b0e8bbc7e (diff) | |
| download | Ishtar-b3972516226e942cc1d92e7a36275b9433cda3f6.tar.bz2 Ishtar-b3972516226e942cc1d92e7a36275b9433cda3f6.zip | |
Save of wizard items (refs #51)
Diffstat (limited to 'ishtar/templates/wizard_done.html')
| -rw-r--r-- | ishtar/templates/wizard_done.html | 12 |
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>» <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> +<p>{%trans "Item successfully saved"%}</p> +</div> +{% endblock %} |
