summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/wizard/wizard_done_summary.html
blob: ad069a738d36f51f8c98e9b51518f7b134b8525d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "ishtar/wizard/wizard_done.html" %}
{% load i18n %}
{% block content %}

<div class='form'>
  <p>{% trans "You have entered the following informations:" %}</p>
  {% for form_label, form_data in datas %}
  <table class='confirm'>
    <caption>{{form_label}}</caption>
    {% for label, data, cls in form_data %}
    <tr{%if cls%} class='{{cls}}'{%endif%}><th>{{label}}</th><td>{{data}}</td></th>
    {% endfor %}
  </table>
  {% endfor %}
  <p>{% trans {%trans "Item successfully saved"%} %}</p>
</div>

{% endblock %}