{% extends "core/base.html" %} {% load static %} {% load hooks %} {% load i18n %} {% load bootstrap4 %} {% block title %}{{ article.title }}{% endblock %} {% block body %}

{{ article.title|safe }}

{% for subject in article.subject_set.all %}{{ subject.name }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% trans "This article is a preprint, it has not been peer reviewed or had any extensive editorial over-sight." %}

{% trans "Authors" %}

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

{% trans "Abstract" %}
{{ article.abstract|safe }}
{% if html %}
{% trans "Preprint Body" %} {{ html|safe }}
{% elif pdf %} {% endif %}
{% trans 'Comments' %} {% if request.user.is_authenticated %}
{% csrf_token %} {% bootstrap_form form %}
{% endif %}
{% for comment in comments %}
{% if comment.author.profile_image %} {% else %} {% endif %}

Comment #{{ comment.pk }} {{ comment.author.full_name }} @ {{ comment.date_time }}

{{ comment.body }}

{% empty %}

There are no comments or no comments have been made public for this article.

{% endfor %} {% hook 'article_footer_block' %}
{% trans "Download" %}
{% trans "Metadata" %}
  • {% trans "Published on" %} {{ article.date_published|date:"d M Y" }}
  • {% trans "License" %} {{ article.license.name }}
  • {% if article.identifier.id_type == 'doi' %}
  • {{ article.identifier }}
  • {% endif %}
{% trans "Metrics" %}
  • {% trans "Views" %}: {{ article.metrics.views }}
  • {% trans "Downloads" %}: {{ article.metrics.downloads }}
{% trans "Versions" %}
{% trans "Citation" %}


{% trans "All Preprints" %}

{% include "elements/journal/citation_modals.html" %} {% endblock %}