summaryrefslogtreecommitdiff
path: root/archaeological_operations/templates/ishtar
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/templates/ishtar')
-rw-r--r--archaeological_operations/templates/ishtar/sheet_site.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_site.html b/archaeological_operations/templates/ishtar/sheet_site.html
index 8b7a0f152..0956478b4 100644
--- a/archaeological_operations/templates/ishtar/sheet_site.html
+++ b/archaeological_operations/templates/ishtar/sheet_site.html
@@ -101,10 +101,15 @@
{% endif %}
{% trans "Context records" as cr_label %}
-{% if item.context_records.count %}
+{% if item.context_records.count and not item.context_record_not_available %}
{% dynamic_table_document cr_label 'context_records' 'archaeological_sites' item.pk '' output %}
{% endif %}
+{% trans "Context records from operations" as cr_label %}
+{% if item.operations_has_cr and not item.context_record_not_available %}
+{% dynamic_table_document cr_label 'context_records' 'archaeological_sites_operations' item.pk '' output %}
+{% endif %}
+
{% if item.finds.count and not item.finds_not_available %}
{% trans "Finds" as finds %}
{% dynamic_table_document finds 'finds' 'base_finds__context_record__archaeological_site' item.pk '' output %}