summaryrefslogtreecommitdiff
path: root/archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html
blob: 914a5198b0a6c02895ba718c3e4c33397ef9ceab (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
{% extends "ishtar/wizard/confirm_wizard.html" %}
{% load i18n %}

{% block "warning_informations" %}
{% for file in numeric_reference_files %}
{% if forloop.first %}
<p class='alert'><i class="fa fa-exclamation-triangle" aria-hidden="true"></i> <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'><i class="fa fa-info-circle" aria-hidden="true"></i></a></li>
{% if forloop.last %}
</ul>
<hr/>
{% endif %}
{% endfor %}
{% for file in similar_files %}
{% if forloop.first %}
<p class='alert'><i class="fa fa-exclamation-triangle" aria-hidden="true"></i> <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'><i class="fa fa-info-circle" aria-hidden="true"></i></a></li>
{% if forloop.last %}
</ul>
<hr/>
{% endif %}
{% endfor %}
{% endblock %}