summaryrefslogtreecommitdiff
path: root/archaeological_operations
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations')
-rw-r--r--archaeological_operations/templates/ishtar/sheet_operation.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html
index 45c43598f..e1ea28882 100644
--- a/archaeological_operations/templates/ishtar/sheet_operation.html
+++ b/archaeological_operations/templates/ishtar/sheet_operation.html
@@ -144,8 +144,8 @@
<table>
<caption>{%trans "Finds"%}</caption>
<tr>
- <th>{% trans "Find Id" %}</th>
- <th>{% trans "Id by material type" %}</th>
+ <th>{% trans "Complete Id" %}</th>
+ <th>{% trans "Short Id" %}</th>
<th>{% trans "Material type" %}</th>
<th>{% trans "Context record" context "short"%}</th>
<th>{% trans "Periods" %}</th>
@@ -158,10 +158,10 @@
{% for context_record in item.context_record.all %}
{% for find in context_record.base_finds.all %}
<tr>
- <td class="ref">{{ find.full_label }}</td>
-{# Displayed as (Patriarche operation code)-(Record unit label)-(Finds label). #}
-{# or displayed as (Year)-(index)-(Record unit label)-(Finds label). #}
- <td class="ref">{{ find.material_type_label }}</td>
+ {# OPE|MAT.CODE|UE|FIND_index #}
+ <td class="ref">{{ find.complete_id|default:""}}</td>
+ {# OPE|FIND_index #}
+ <td class="ref">{{ find.short_id|default:"" }}</td>
<td class="string">{{ find.get_last_find.material_type|default:"" }}</td>
<td>{{find.context_record.label}}</td>
<td class='string'>{{ find.get_last_find.dating}}</td>{# TODO .all|join:", " ? #}