blob: 45298c89609b9be4c425b5155c0f3bdccb536dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "ishtar/wizard/confirm_wizard.html" %}
{% load url from future %}
{% load i18n %}
{% block "warning_informations" %}
{% for file in similar_files %}
{% if forloop.first %}
<p class='alert'><label>{% trans "These(s) file(s) are in the same town and have parcel(s) in common." %}</label></p>
<ul>
{% endif%}
<li>{{file}} <a href='#' onclick='load_window("{% url 'show-file' file.pk '' %}", "{{model_name}}");' class='display_details'>{% trans "Details" %}</a></li>
{% if forloop.last %}
</ul>
<hr/>
{% endif %}
{% endfor %}
{% endblock %}
|