diff options
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 |
commit | d356385989e1a3116896ee9578cfba3290642e97 (patch) | |
tree | 462cc3adc15f2131fb61d81b895b0b6f15448d47 | |
parent | 84219594bf960d1665fbac3ee195aa8ff85f13ba (diff) | |
download | Ishtar-d356385989e1a3116896ee9578cfba3290642e97.tar.bz2 Ishtar-d356385989e1a3116896ee9578cfba3290642e97.zip |
Card find: add missing fields
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 5 |
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 %} – {% 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 %} – {% 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 %} |