summaryrefslogtreecommitdiff
path: root/ishtar/templates/file_wizard.html
blob: 4ac4644e6ab7ffb1e4803459e0b556114f9203c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}
{% load i18n %}
{% load range %}
{% block content %}
<ul id='form_path'>
{% for step in extra_context.previous_steps %}
  <li>&raquo; <a href='{%url action CURRENT_ACTION step.slug%}'>Step {{step.slug}}</a></li>
{% endfor %}
  <li class='current'>&raquo; <a href='{%url action CURRENT_ACTION current_step.slug%}'>Step {{current_step.slug}}</a></li>
</ul>
<form action="." method="post">{% csrf_token %}
<table>
{{ form }}
</table>
<input type="hidden" name="{{ step_field }}" value="{{ step0 }}" />
{{ previous_fields|safe }}
<input type="submit">
</form>
{% endblock %}