summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-03-01 12:02:28 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-03-01 12:02:28 +0100
commita2734e9e659dd95c6f6955d73c1d512e543948dc (patch)
tree462cc3adc15f2131fb61d81b895b0b6f15448d47
parent51728ebbdf7a3032089452adac5d536f2fb87fb5 (diff)
downloadIshtar-a2734e9e659dd95c6f6955d73c1d512e543948dc.tar.bz2
Ishtar-a2734e9e659dd95c6f6955d73c1d512e543948dc.zip
Card find: add missing fields
-rw-r--r--archaeological_finds/templates/ishtar/sheet_find.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html
index 96a1cee61..3b3f8bf14 100644
--- a/archaeological_finds/templates/ishtar/sheet_find.html
+++ b/archaeological_finds/templates/ishtar/sheet_find.html
@@ -16,6 +16,7 @@
<div class="card-body">
<p class="card-text">
<p class="window-refs" title="{% trans 'Free ID' %}">{{ item.label|default:"" }}</p>
+ <p class="window-refs" title="{% trans 'Label' %}">{{ item.denomination|default:"" }}</p>
<p class='window-refs' title="{% trans 'Base find - Complete ID' %}">{% for base_find in item.base_finds.all %}{% if forloop.counter0 %} &ndash; {% endif %}{{base_find.complete_id}}{% endfor %}</p>
<p class='window-refs' title="{% trans 'Base find - Short ID' %}">{% for base_find in item.base_finds.all %}{% if forloop.counter0 %} &ndash; {% endif %}{{base_find.short_id}}{% endfor %}</p>
<p class="window-refs" title="{% trans 'Find - Administrative ID' %}">{{ item.administrative_index|default:"" }}</p>
@@ -34,12 +35,15 @@
<div class='row'>
{% field_flex "Previous ID" item.previous_id %}
+ {% field_flex "Museum ID" item.museum_id %}
{% include "ishtar/blocks/sheet_creation_section.html" %}
{% trans "Administrative index" as admin_index_label %}
{% field_flex admin_index_label item.administrative_index %}
{% field_flex_multiple "Material types" item.material_types %}
{% field_flex_full "Description" item.description "<pre>" "</pre>" %}
{% field_flex_full "Mark" item.mark "<pre>" "</pre>" %}
+ {% field_flex_full "Decoration" item.decoration "<pre>" "</pre>" %}
+ {% field_flex "Manufacturing place" item.manufacturing_place %}
{% field_flex "Find number" item.find_number %}
{% field_flex "Minimum number of individuals (MNI)" item.min_number_of_individuals %}
@@ -214,6 +218,7 @@
{% field_flex lastmodifiedby_label modifier|safe %}
{% endwith %}{% endwith %}
{% endif %}
+ {% field_flex "Excavation ID" base_find.excavation_id %}
{% field_flex "Batch/object" base_find.batch %}
{% if base_find.history_object and base_find.history_object.IS_ISOLATED_DICT %}
{% field_flex "Batch/object" base_find.batch|from_dict:base_find.history_object.IS_ISOLATED_DICT %}