{% extends "base.html" %} {% load static pagination_go_to_page i18n %} {% get_current_language as LANGUAGE_CODE %} {% block main %}
{% translate 'How to Search' %} {% translate 'Search by Map' %}
{% translate 'Includes' %} {% include 'corpus/snippets/options-section-title-toggle.html' %}
{% for f in options_includes %} {% if LANGUAGE_CODE == 'en' %}{{ f.filter_name }}{% elif LANGUAGE_CODE == 'fa' %}{{ f.filter_name_fa }}{% endif %} {% endfor %}
{% translate 'Dates (CE)' %} {% include 'corpus/snippets/options-section-title-toggle.html' %}
{% include 'corpus/snippets/list-filters.html' with filters=options_datefilters %}
{% translate 'Filters' %} {% include 'corpus/snippets/options-section-title-toggle.html' %}
{% include 'corpus/snippets/list-filters.html' with filters=options_filters %}
{% translate 'Results' %}
{{ page_obj.paginator.count }} {% translate 'results found' %} {% if page_obj.paginator.count != count_all_texts %}{% translate 'of all' %} {{ count_all_texts }} {% translate 'Corpus Texts' %}{% endif %}
{% include 'corpus/snippets/downloaddata.html' with data_description='all texts in the search results' %}
{% for object in object_list %}
{% translate 'In IEDC since' %} {{ object.meta_created_datetime | date:"d M o" }} (IEDCID{{ object.id }})
{{ forloop.counter0|add:start_count }} {{ object.title }}
{% if object.summary_of_content %}
{{ object.summary_of_content_preview }}
{% endif %}
{% translate 'Primary Language' %}
{% if object.primary_language %}{{ object.primary_language }}{% else %}{% translate 'Unknown' %}{% endif %}
{% translate 'Type' %}
{% if object.type %}{{ object.type }}{% else %}{% translate 'Unknown' %}{% endif %}
{% translate 'Writing Support' %}
{% if object.writing_support %}{{ object.writing_support | title }}{% else %}{% translate 'Unknown' %}{% endif %}
{% translate 'Dates (CE)' %}
{% if object.gregorian_date_listview %}{{ object.gregorian_date_listview }}{% else %}{% translate 'Unknown' %}{% endif %}
{% if object.tags %}
{% translate 'Tags' %}: {% for tag in object.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{% else %}>{% endif %} {% translate 'Transcription' %} {% else %}>{% endif %} {% translate 'Translation' %} {% else %}>{% endif %} {% translate 'Transliteration' %}
{% if not object.public_review_approved %}
{% translate 'Not yet approved' %}
{% endif %}
{% empty %}
No Corpus Texts Found

Try expanding your search criteria or view all Corpus Texts

{% endfor %}
{% if page_obj.paginator.num_pages > 1 %}
{% if page_obj.has_previous %} {% endif %}
{% translate 'Page' %} {% translate 'of' %} {{ page_obj.paginator.num_pages }}
{% if page_obj.has_next %} {% endif %}
{% endif %}
{% endblock %}