diff options
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index db192cc9f..e0d74db77 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -14,11 +14,10 @@ {% trans "This sheet has a downstream treatment: it is related to an old version of the find." %}</p> {% endif %} -<p class="window-refs">{{ item.label|default:"" }}</p> -<p class='window-refs'>{% for base_find in item.base_finds.all %}{% if forloop.counter0 %} – {% endif %}{{base_find.complete_id}}{% endfor %}</p> -<p class='window-refs'>{% for base_find in item.base_finds.all %}{% if forloop.counter0 %} – {% endif %}{{base_find.short_id}}{% endfor %}</p> -<p class="window-refs">{{ item.administrative_index|default:"" }}</p> -<p class="window-refs">{{ item.contextrecord|default:"" }}</p> +<p class="window-refs" title="{% trans 'Free ID' %}">{{ item.label|default:"" }}</p> +<p class='window-refs' title="{% trans 'Base find - Complete ID' %}">{% for base_find in item.base_finds.all %}{% if forloop.counter0 %} – {% endif %}{{base_find.complete_id}}{% endfor %}</p> +<p class='window-refs' title="{% trans 'Base find - Short ID' %}">{% for base_find in item.base_finds.all %}{% if forloop.counter0 %} – {% endif %}{{base_find.short_id}}{% endfor %}</p> +<p class="window-refs" title="{% trans 'Find - Administrative ID' %}">{{ item.administrative_index|default:"" }}</p> {% include "ishtar/blocks/sheet_external_id.html" %} |