diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-21 23:00:22 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-21 23:00:22 +0100 |
commit | abe0902d8c88b1e1acc7a1bff666109f5d18cfe8 (patch) | |
tree | 10c6e18b782650e66684b0527adbe768875aed08 /archaeological_context_records/templates | |
parent | f7a4bd783df87aea052aba07b2a48001b6389772 (diff) | |
download | Ishtar-abe0902d8c88b1e1acc7a1bff666109f5d18cfe8.tar.bz2 Ishtar-abe0902d8c88b1e1acc7a1bff666109f5d18cfe8.zip |
Context records forms/sheet: add documentation types, diameter and depth of appearance (refs #3561)
Diffstat (limited to 'archaeological_context_records/templates')
-rw-r--r-- | archaeological_context_records/templates/ishtar/sheet_contextrecord.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html index 8398a0523..272dcb28e 100644 --- a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html +++ b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html @@ -26,15 +26,17 @@ </ul> {% field "Comment on datings" item.datings_comment "<pre>" "</pre>" %} -{% if item.description or item.lenght or item.width or item.depth or item.thickness or item.comment %} +{% if item.diameter or item.depth_of_appearance or item.documentations.count or item.description or item.lenght or item.width or item.depth or item.thickness or item.comment %} <h3>{% trans "Description"%}</h3> {% field "Description" item.description "<pre>" "</pre>" %} {% field "Comment" item.comment "<pre>" "</pre>" %} <ul class='form-flex'> -{% field_li "Length (m)" item.lenght %} -{% field_li "Width (m)" item.width %} -{% field_li "Depth (m)" item.depth %} -{% field_li "Thickness (m)" item.thickness %} + {% field_li "Length (m)" item.lenght %} + {% field_li "Width (m)" item.width %} + {% field_li "Diameter (m)" item.diameter %} + {% field_li "Depth (m)" item.depth %} + {% field_li "Thickness (m)" item.thickness %} + {% field_li "Depth of appearance (m)" item.depth_of_appearance %} </ul> {% endif %} @@ -42,9 +44,9 @@ <h3>{% trans "Interpretation"%}</h3> <ul class='form-flex'> -{% field_li "Activity" item.activity %} -{% field_li "Identification" item.identification %} -{% field_li "Has furniture?" item.has_furniture %} + {% field_li_multiple "Documentation" item.documentations %} + {% field_li "Activity" item.activity %} + {% field_li "Identification" item.identification %} </ul> {% field "Filling" item.filling "<pre>" "</pre>" %} {% field "Interpretation" item.interpretation "<pre>" "</pre>" %} |