diff options
Diffstat (limited to 'archaeological_context_records')
| -rw-r--r-- | archaeological_context_records/templates/ishtar/sheet_contextrecord.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html index 5b89c15d4..41e8ebe2a 100644 --- a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html +++ b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html @@ -99,8 +99,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> @@ -112,12 +112,10 @@ </tr> {% for find in item.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> -{# Displayed as (Patriarche operation code)-(Record unit label)-(material code)-(Finds label indexed by material type). #} -{# or displayed as (Year)-(index)-(Record unit label)-(material code)-(Finds label indexed by material type) #} + {# 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>{{ find.get_last_find.dating}}</td>{# TODO .all|join:", " ? #} |
