summaryrefslogtreecommitdiff
path: root/archaeological_finds/templates/ishtar/sheet_find.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-04-13 17:11:50 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-04-13 17:13:06 +0200
commit3ccc3a15c541763431baf33ffb605fff9cdaec65 (patch)
tree938b4e94156cc9fe39fa7e7218b66aeafe709214 /archaeological_finds/templates/ishtar/sheet_find.html
parent885cac313e1c937f93379a9a234ca178cc75ab0d (diff)
downloadIshtar-3ccc3a15c541763431baf33ffb605fff9cdaec65.tar.bz2
Ishtar-3ccc3a15c541763431baf33ffb605fff9cdaec65.zip
Finds - fields: add clutter dimensions and material, object type quality types
Diffstat (limited to 'archaeological_finds/templates/ishtar/sheet_find.html')
-rw-r--r--archaeological_finds/templates/ishtar/sheet_find.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html
index 5062963ba..af7997e67 100644
--- a/archaeological_finds/templates/ishtar/sheet_find.html
+++ b/archaeological_finds/templates/ishtar/sheet_find.html
@@ -53,7 +53,9 @@
{% field_flex_full "Description" item.description "<pre>" "</pre>" %}
{% field_flex "Is complete?" item.is_complete %}
{% field_flex_multiple "Material types" item.material_types %}
+ {% field_flex "Material type quality" item.material_type_quality %}
{% field_flex_multiple "Object types" item.object_types %}
+ {% field_flex "Object type quality" item.object_type_quality %}
{% field_flex "Find number" item.find_number %}
{% field_flex "Minimum number of individuals (MNI)" item.min_number_of_individuals %}
{% field_flex_full "Decoration" item.decoration "<pre>" "</pre>" %}
@@ -63,7 +65,7 @@
{% field_flex_full "Comment" item.comment "<pre>" "</pre>" %}
</div>
-{% if item.length or item.width or item.height or item.diameter or item.thickness or item.volume or item.weight_string or item.dimensions_comment %}
+{% if item.length or item.width or item.height or item.diameter or item.thickness or item.volume or item.weight_string or item.dimensions_comment or item.clutter_long_side or item.clutter_short_side or item.clutter_height %}
<h3>{% trans "Dimensions" %}</h3>
<div class='row'>
{% field_flex "Length (cm)" item.length %}
@@ -74,6 +76,9 @@
{% field_flex "Volume (l)" item.volume %}
{% trans "Weight (g)" as weight_label %}
{% field_flex weight_label item.weight_string %}
+ {% field_flex "Clutter long side (cm)" item.clutter_long_side %}
+ {% field_flex "Clutter short side (cm)" item.clutter_short_side %}
+ {% field_flex "Clutter height (cm)" item.clutter_height %}
{% field_flex_full "Dimensions comment" item.dimensions_comment "<pre>" "</pre>" %}
</div>
{% endif %}