diff options
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 %} |
