{% extends "core/base.html" %} {% load static %} {% load i18n %} {% load truncate %} {% load dates %} {% block title %}{% if subject %}{{ subject.name }} {{ request.repository.object_name_plural }}{% else %}{% trans "All" %} {{ request.repository.object_name_plural }} {% endif %}{% endblock %} {% block body %}

{{ request.repository.object_name_plural }}

{% if search_term %} Search for {{ search_term }} ({{ preprints.paginator.count }} results) {% elif subject %} Filtering by Subject: {{ subject }} {% else %} There {% if preprints.paginator.count > 1 %}are {{ preprints.paginator.count }} {{ request.repository.object_name_plural }} listed.{% elif preprints.paginator.count == 1 %}is 1 {{ request.repository.object_name }}{% else %}are 0 {{ request.repository.object_name }} listed.{% endif %} {% endif %}

{% for preprint in preprints %}
{% endfor %}
{% endblock body %}