From 6e59ba6ea1a7c79a4aa5fb88086ca8cc8dbff2df Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 6 Feb 2017 19:37:49 +0100 Subject: Find sheet: display treatment states in treatment table --- archaeological_finds/templates/ishtar/sheet_find.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index bb2e629c7..4ae6dbffe 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -95,6 +95,7 @@ {% trans "Year - index" %} {% trans "Label" %} {% trans "Type" %} + {% trans "State" %} {% trans "Related finds (max. 15 displayed)" %} {% trans "Doer" %} {% trans "Container" %} @@ -112,6 +113,7 @@ {{ treatment.year }} - {{treatment.index}} {{ treatment.label|default_if_none:"-" }} {{ treatment.treatment_types_lbl }} + {{ treatment.treatment_state|default_if_none:"-" }} {% for item in items %}{{item}} {{ item|link_to_window}}{% endfor %} {{ treatment.person|default_if_none:"-" }} {{ treatment.container|default_if_none:"-" }} @@ -135,6 +137,7 @@ {% trans "Year - index" %} {% trans "Label" %} {% trans "Type" %} + {% trans "State" %} {% trans "Related finds (max. 15 displayed)" %} {% trans "Doer" %} {% trans "Container" %} @@ -152,6 +155,7 @@ {{ treatment.year }} - {{treatment.index}} {{ treatment.label }} {{ treatment.treatment_types_lbl }} + {{ treatment.treatment_state|default_if_none:"-" }} {% for item in items %}{{item}} {{ item|link_to_window}}{% endfor %} {{ treatment.person|default_if_none:"" }} {{ treatment.container|default_if_none:"-" }} -- cgit v1.2.3