+ {% if article.preprint.preprintversion_set.first %} + {{ article.safe_title }} + {% else %} + {{ article.safe_title }} + {% endif %} +
+ {% if article.date_declined or article.stage == 'Rejected' %} + {% trans "Declined" %} + {% elif not article.date_published and article.stage != 'preprint_published' and article.stage != 'Published' %} + {% trans "Under Review" %} + {% endif %} ++ {% for author in article.frozen_authors.all %} + {{ author.full_name }}{% if not forloop.last %}, {% endif %} + {% endfor %} +
+ {% endif %} + ++ {% if article.preprint.date_published %} + {% trans "First posted" %}: {{ article.preprint.date_published|date:"j F Y" }} + {% endif %} + {% if article.date_accepted %} + · {% trans "Accepted" %}: {{ article.date_accepted|date:"j F Y" }} + {% endif %} + {% if article.date_published %} + · {% trans "Published" %}: {{ article.date_published|date:"j F Y" }} + {% endif %} + {% if article.date_declined %} + · {% trans "Declined" %}: {{ article.date_declined|date:"j F Y" }} + {% endif %} +
+ + {% with versions=article.preprint.preprintversion_set.all %} + {% if versions %} ++ {% trans "Versions" %}: + {% for version in versions %} + v{{ version.version }}{% if not forloop.last %}, {% endif %} + {% endfor %} +
+ {% endif %} + {% endwith %} +