blob: 87c9adc888a7c068c35b99a69ed7b670657701d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% extends "ishtar/wizard/confirm_wizard.html" %}
{% load url from future %}
{% load i18n %}
{% block "warning_informations" %}
{% for file in numeric_reference_files %}
{% if forloop.first %}
<p class='alert'><label>{% trans "The following files have the same numeric index as this file." %}</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 %}
{% for file in similar_files %}
{% if forloop.first %}
<p class='alert'><label>{% trans "The following files are in the same town and have parcels in common with this file." %}</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 %}
|