{% load dates %}
{% for preprint in preprints %}

{{ preprint.title|safe }}

{% for author in preprint.authors.all %}{{ author.full_name }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% if forloop.counter|divisibleby:3 %}
{% endif %} {% endfor %}