blob: 6bbeb53d4045bb12473775755273eeac46817d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 %}
|