diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-11-15 16:29:30 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:19 +0100 |
commit | cda77c979e232386ef24ea7a04600f16f3c32c98 (patch) | |
tree | 7d53e762723338913594ccdb42c6fa08c4bfb5ef /archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html | |
parent | 4746cd2938df3cf87ae338d22eb4f67f35bac960 (diff) | |
download | Ishtar-cda77c979e232386ef24ea7a04600f16f3c32c98.tar.bz2 Ishtar-cda77c979e232386ef24ea7a04600f16f3c32c98.zip |
File module refactoring - more tests for files
Diffstat (limited to 'archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html')
-rw-r--r-- | archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html b/archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html deleted file mode 100644 index 914a5198b..000000000 --- a/archaeological_files_pdl/templates/ishtar/wizard/file_confirm_wizard.html +++ /dev/null @@ -1,27 +0,0 @@ -{% 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 %} |