{% load static i18n %}
| {# Translators: table header for document name (shelfmark) #} {% translate 'Document' %} | {# Translators: table header for document type #} {% translate 'Type' %} | {# Translators: table header for document relation (with a person or place) #} {% translate 'Relation' %} | {# Translators: table header for document date #} {% translate 'Date' %} |
|---|---|---|---|
| {% if document.thumbnail %} {{ document.thumbnail }} {% else %} {# Translators: label for when no image thumbnail is available #} {% translate 'No Image' %} {% endif %} {{ document.shelfmark }} | {{ document.doctype }} | {# Translators: label for an uncertain Person-Document identification #}{% for reltype in document.relations %} {% if not forloop.first %}{{ reltype.name|lower }}{% else %}{{ reltype.name }}{% endif %}{% if reltype.uncertain %} {% translate '(uncertain)' %}{% endif %}{% if not forloop.last %},{% endif %} {% endfor %} | {{ document.date.label }} |