summaryrefslogtreecommitdiff
path: root/ishtar/templates/wizard_done_summary.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates/wizard_done_summary.html')
-rw-r--r--ishtar/templates/wizard_done_summary.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/ishtar/templates/wizard_done_summary.html b/ishtar/templates/wizard_done_summary.html
deleted file mode 100644
index 53650dafe..000000000
--- a/ishtar/templates/wizard_done_summary.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends "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 %}