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_operation.html31
1 files changed, 10 insertions, 21 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html
index 0672cf22f..2768fd96c 100644
--- a/archaeological_operations/templates/ishtar/sheet_operation.html
+++ b/archaeological_operations/templates/ishtar/sheet_operation.html
@@ -1,5 +1,5 @@
{% extends "ishtar/sheet.html" %}
-{% load i18n %}
+{% load i18n window_tables %}
{% block head_sheet %}
{{block.super}}
@@ -117,26 +117,8 @@
{% endfor %}
</table>
-<h3>{% trans "Scientific documentation"%}</h3>
-<table>
- <caption>{%trans "Documents"%}</caption>
- <tr>
- <th>{% trans "Title" %}</th>
- <th>{% trans "Type" %}</th>
- <th>{% trans "Authors" %}</th>
- <th>{% trans "Link" %}</th>
- </tr>
- {% for doc in item.source.all %}
- <tr>
- <td class='string'>{{ doc.title }}</td>
- <td class='string'>{{doc.source_type}}</td>
- <td class='string'>{{ doc.authors.all|join:", " }}</td>
- <td class='string'>{% if doc.associated_url %}<a href='{{doc.associated_url}}'>{% trans "Link"%}</a>{% endif %}</td>
- </tr>
- {% empty %}
- <tr><td colspan="4" class='no_items'>{% trans "No scientific document associated to this operation" %}</td></tr>
- {% endfor %}
-</table>
+{% trans "Document from this operation" as operation_docs %}
+{% if item.source.count %} {% table_document operation_docs item.source.all %}{% endif %}
<table>
<caption>{%trans "Context records"%}</caption>
@@ -161,6 +143,10 @@
<tr><td colspan="6" class='no_items'>{% trans "No context record associated to this operation" %}</td></tr>
{% endfor %}
</table>
+
+{% trans "Documents from associated context records" as cr_docs %}
+{% if item.context_record_docs_q.count %} {% table_document cr_docs item.context_record_docs_q.all %}{% endif %}
+
<div class='table'>
<table>
<caption>{%trans "Finds"%}</caption>
@@ -206,4 +192,7 @@
</table>
</div>
+{% trans "Documents from associated finds" as find_docs %}
+{% if item.find_docs_q.count %} {% table_document find_docs item.find_docs_q.all %}{% endif %}
+
{% endblock %}