{% load i18n corpus_extras %} {% spaceless %}
  • {# result number #} {% with page_obj.start_index|default:1 as start_adjust %} {{ forloop.counter0|add:start_adjust }} {% endwith %}
    {# title #}

    {# type and shelfmark #} {{ document.type }} {{ document.shelfmark|shelfmark_wrap }}

    {# metadata #} {# description #} {# TODO: Adjust lang attribute logic for non-English descriptions #}

    {# display keywords in context if any #} {% with document_highlights=highlighting|dict_item:document.id %} {% if document_highlights.description %} {% for snippet in document_highlights.description %} {{ snippet|safe }} {% endfor %} {% else %} {# otherwise, display truncated description #} {{ document.description|truncatewords:25 }} {% endif %} {% endwith %}

    {# transcription: keywords in context if any, or excerpt #} {% with document_highlights=highlighting|dict_item:document.id lang=document.language_code lang_script=document.language_script %} {% if document_highlights.transcription or document.transcription %}
    {% if document_highlights.transcription %} {% for snippet in document_highlights.transcription %}{{ snippet.strip|safe }}{% endfor %} {% elif document.transcription %} {# otherwise, display truncated transcription #} {# NOTE: might be nice to display N lines instead of using truncatechars #} {{ document.transcription.0|safe|truncatechars_html:150 }} {% endif %}
    {% endif %} {% endwith %} {# scholarship records #}

    {% if document.scholarship_count %} {% if document.num_editions %} {% comment %}Translators: number of editions for this document{% endcomment %} {% blocktranslate count counter=document.num_editions trimmed %} 1 Transcription {% plural %} {{ counter }} Transcriptions {% endblocktranslate %} {% endif %} {% if document.num_translations %} {% comment %}Translators: number of translations for this document{% endcomment %} {% blocktranslate count counter=document.num_translations trimmed %} 1 Translation {% plural %} {{ counter }} Translations {% endblocktranslate %} {% endif %} {% if document.num_discussions %} {% comment %}Translators: number of sources that discuss this document{% endcomment %} {% blocktranslate count counter=document.num_discussions trimmed %} 1 Discussion {% plural %} {{ counter }} Discussions {% endblocktranslate %} {% endif %} {% else %} {% translate 'No Scholarship Records' %} {% endif %}

    {# tags #} {% if document.tags %} {# Translators: label for tags on a document #}

    {% translate 'Tags' %}

    {% endif %}
    {% if document.iiif_images %} {% endif %} {# view link #} {% translate 'View document details' %}
  • {% endspaceless %}