{% extends "core/base.html" %} {% comment %} This template is deprecated. Preprint templates are in templates/repository/. {% endcomment %} {% load static %} {% load i18n %} {% load dates %} {% block title %}{% trans "All Preprints" %}{% endblock %} {% block body %}

{% trans "All Preprints" %}

{% for article in articles %}
{% if article.is_remote %} {% include "elements/doi_display.html" with doi=article.identifier.identifier title=article.title %} {% else %} {{ article.title|safe }} {% endif %}

{% for author in article.authors.all %}{% if forloop.last %} {% if article.authors.all|length > 1 %} and {% endif %}{% endif %}{{ author.full_name }} {% if not forloop.last %} {% if not forloop.counter == article.authors.all|length|add:-1 %}, {% endif %}{% endif %}{% endfor %}

{{ article.get_subject_area }}

{% empty %}

{% trans "There are no preprints to display" %}

{% endfor %}
{% endblock body %}