summaryrefslogtreecommitdiff
path: root/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html')
-rw-r--r--archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html b/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html
new file mode 100644
index 000000000..b1d77ba81
--- /dev/null
+++ b/archaeological_finds/templates/ishtar/wizard/wizard_simplefind.html
@@ -0,0 +1,13 @@
+{% extends "ishtar/wizard/default_wizard.html" %}
+{% load i18n %}
+{% block form_head %}
+<div class="alert alert-warning">
+ <i class="fa fa-exclamation-triangle"></i>
+ {% trans 'This find is related to many base finds. To edit field related to base finds edit the corresponding find between theses:' %}
+ <ul>{% for base_find in wizard.form.base_finds %}
+ {% with find=base_find.get_main_find %}<li>
+ {{find.short_label }}
+ <a href="{% url 'find_modify' find.pk %}"><i class="fa fa-pencil"></i></a>
+ </li>{% endwith %}{% endfor %}</ul>
+</div>
+{% endblock %}