summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/import_delete.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-03-21 23:59:27 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-03-21 23:59:27 +0100
commitb8cf790377a2ece768ea19bd1d216fdf0ee78cda (patch)
treeb72020ae9a2cee74a3060fc17495f445aa414e0e /ishtar_common/templates/ishtar/import_delete.html
parent456b74ac295815970483871cf2575863bc97dd6f (diff)
parent88fde9b54bd94e582fa4f8886463eda2e39ceb46 (diff)
downloadIshtar-b8cf790377a2ece768ea19bd1d216fdf0ee78cda.tar.bz2
Ishtar-b8cf790377a2ece768ea19bd1d216fdf0ee78cda.zip
Merge branch 'v0.9' into wheezy
Diffstat (limited to 'ishtar_common/templates/ishtar/import_delete.html')
-rw-r--r--ishtar_common/templates/ishtar/import_delete.html33
1 files changed, 17 insertions, 16 deletions
diff --git a/ishtar_common/templates/ishtar/import_delete.html b/ishtar_common/templates/ishtar/import_delete.html
index 30217bf8d..4b48ebc8c 100644
--- a/ishtar_common/templates/ishtar/import_delete.html
+++ b/ishtar_common/templates/ishtar/import_delete.html
@@ -4,21 +4,22 @@
{% block content %}
<h2>{{page_name}}</h2>
<div class='form'>
-<form action="." method="post">{% csrf_token %}
-<p>{% trans "The current items are linked to this import:" %}</p>
-{% for accessor, imported in object.get_all_imported %}
-{% ifchanged imported|verbose_model_name %}
-{% if forloop.counter %}</ul>{% endif %}
-<h4>{{imported|verbose_model_name}}</h4>
-<ul class='item-list'>
-{%endifchanged%}
- <li>{{imported}}</li>
-{% endfor %}
-</ul>
-<p>{% trans "All these items will be deleted with this import." %}</p>
-<strong>{% trans "Are you sure?" %}</strong>
-<input type="submit" value="{% trans "Yes" %}"/>
-</form>
-<p><a href='{% url 'current_imports' %}'>{% trans "Back" %}</a></p>
+ <h3>{{object}}</h3>
+ <form action="." method="post">{% csrf_token %}
+ <p>{% trans "The current items are linked to this import:" %}</p>
+ {% for accessor, imported in object.get_all_imported %}
+ {% ifchanged imported|verbose_model_name %}
+ {% if forloop.counter %}</ul>{% endif %}
+ <h4>{{imported|verbose_model_name}}</h4>
+ <ul class='item-list'>
+ {%endifchanged%}
+ <li>{{imported}}</li>
+ {% endfor %}
+ </ul>
+ <p>{% trans "All these items will be deleted with this import." %}</p>
+ <strong>{% trans "Are you sure?" %}</strong>
+ <input type="submit" value="{% trans "Yes" %}"/>
+ </form>
+ <p><a href='{% url 'current_imports' %}'>{% trans "Back" %}</a></p>
</div>
{% endblock %}