{% extends "core/base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "All Preprints" %}{% endblock %} {% block body %}

{% trans "All Preprints" %}


{% for article in articles %}
{{ article.title|safe }}

{% 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.date_published|date:"Y-m-d" }} {{ article.get_subject_area }}

{% empty %}

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

{% endfor %}
{{ page }}
    {% if articles.has_previous %} «  {% endif %} {{ articles.page.page_range }} {% for page in articles.paginator.page_range %} {{ page }}   {% endfor %} {% if articles.has_next %} » {% endif %}
{% endblock body %}