blob: 468e8ed6a1ca24c00470f86530e8ac022076bc7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}
|