{% extends "core/base.html" %} {% load i18n %} {% load pages %} {% block title %}{{ request.repository.name }} {{ request.repository.object_name_plural }}{% 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 %}

{% include "repository/elements/preprint_listing.html" with preprints=preprints %}
{% csrf_token %}

{% trans "You can search by:" %}

  • {% trans "Title" %}
  • {% trans "Keywords" %}
  • {% trans "Author Name" %}
  • {% trans "Author Affiliation" %}
{% endblock %}