summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/wizard_done_summary.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2012-10-21 18:29:47 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2012-10-21 18:29:47 +0200
commit4bf634a003ab6c3d9edf1cc7fa40e7203d59711f (patch)
tree606b2c5299a5376e49addc4e2f8acc5d5f465fbe /ishtar_common/templates/wizard_done_summary.html
parent28e66c7bae52302687dd73f86762f45529d71394 (diff)
downloadIshtar-4bf634a003ab6c3d9edf1cc7fa40e7203d59711f.tar.bz2
Ishtar-4bf634a003ab6c3d9edf1cc7fa40e7203d59711f.zip
Djangoization - Major refactoring (step 9)
* move templates * change labels
Diffstat (limited to 'ishtar_common/templates/wizard_done_summary.html')
-rw-r--r--ishtar_common/templates/wizard_done_summary.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/ishtar_common/templates/wizard_done_summary.html b/ishtar_common/templates/wizard_done_summary.html
deleted file mode 100644
index 53650dafe..000000000
--- a/ishtar_common/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 %}