diff options
| -rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 4 | 
1 files changed, 4 insertions, 0 deletions
| 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 @@      <th>{% trans "Year - index" %}</th>      <th>{% trans "Label" %}</th>      <th>{% trans "Type" %}</th> +    <th>{% trans "State" %}</th>      <th>{% trans "Related finds (max. 15 displayed)" %}</th>      <th>{% trans "Doer" %}</th>      <th>{% trans "Container" %}</th> @@ -112,6 +113,7 @@      <td class='string'>{{ treatment.year }} - {{treatment.index}}</td>      <td class='string'>{{ treatment.label|default_if_none:"-" }}</td>      <td class='string'>{{ treatment.treatment_types_lbl }}</td> +    <td class='string'>{{ treatment.treatment_state|default_if_none:"-" }}</td>      <td class='item-list'>{% for item in items %}<span>{{item}} {{ item|link_to_window}}</span>{% endfor %}</td>      <td class='string'>{{ treatment.person|default_if_none:"-" }}</td>      <td class='string'>{{ treatment.container|default_if_none:"-" }}</td> @@ -135,6 +137,7 @@      <th>{% trans "Year - index" %}</th>      <th>{% trans "Label" %}</th>      <th>{% trans "Type" %}</th> +    <th>{% trans "State" %}</th>      <th>{% trans "Related finds (max. 15 displayed)" %}</th>      <th>{% trans "Doer" %}</th>      <th>{% trans "Container" %}</th> @@ -152,6 +155,7 @@      <td class='string'>{{ treatment.year }} - {{treatment.index}}</td>      <td class='string'>{{ treatment.label }}</td>      <td class='string'>{{ treatment.treatment_types_lbl }}</td> +    <td class='string'>{{ treatment.treatment_state|default_if_none:"-" }}</td>      <td class='item-list'>{% for item in items %}<span>{{item}} {{ item|link_to_window}}</span>{% endfor %}</td>      <td class='string'>{{ treatment.person|default_if_none:"" }}</td>      <td class='string'>{{ treatment.container|default_if_none:"-" }}</td> | 
