{% extends "core/base.html" %} {% load static %} {% load hooks %} {% load i18n %} {% load foundation %} {% load dates %} {% block title %}{{ preprint.title }}{% endblock %} {% block body %}


{{ preprint.title|safe }}

This is a {{ request.repository.object_name }} and has not been peer reviewed. {% if preprint.doi %} The published version of this {{ request.repository.object_name }} is available: {% include "elements/doi_display.html" with doi=preprint.doi title=preprint.title %} {% elif preprint.article %} A published version of this {{ request.repository.object_name }} is available on {{ preprint.article.journal.name }} . {% endif %} This is version {{ preprint.current_version.version }} of this {{ request.repository.object_name }}.

{% trans "Authors" %}

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

{% trans "Abstract" %}

{{ preprint.abstract|safe }}

{% if preprint.current_version_file_type == 'html' %}

{% trans 'Preprint Body' %}

{{ html|safe }} {% elif preprint.current_version_file_type == 'pdf' %} {% endif %} {% if request.repository.enable_comments or request.repository.enable_invited_comments %}

{% trans 'Comments' %}

{% if request.user.is_authenticated and request.repository.enable_comments %}
{% csrf_token %} {{ form|foundation }}
{% endif %} {% for comment in comments %}
{% if comment.author.profile_image and not comment.review.anonymous %} {% else %} {% endif %}
{% if comment.review %}

Invited Review Comment #{{ comment.pk }} {% if comment.review.anonymous %}Anonymous{% else %}{{ comment.author.full_name }}{% endif %} @ {{ comment.date_time }}

{{ comment.body|safe }}

{% else %}

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

{{ comment.body|linebreaksbr }}

{% endif %}
{% empty %}

{% trans "There are no comments or no comments have been made public for this article." %}

{% endfor %} {% endif %} {% hook 'article_footer_block' %}
{% if preprint.current_version.file %}

{% trans "Downloads" %}

{{ request.repository.object_name }} {% include "elements/icons/link_download.html" %}

{% endif %}

{% trans "Metadata" %}

  • {% trans "Published" %}: {{ preprint.date_published|date_human }}
  • {% trans "Last Updated" %}: {{ preprint.current_version.date_time|date_human }}
  • {% if preprint.license %}
  • {% trans "License" %}: {{ preprint.license.name }} {% include "elements/icons/link_external.html" %} {% endif %}
  • {% trans "Subjects:" %} {% include "common/repository/subject_display.html" %}
  • {% if preprint.keywords.all %}
  • {% trans "Keywords:" %}
      {% for keyword in preprint.keywords.all %}
    • {{ keyword.word }} {% if not forloop.last %},{% endif %}
    • {% endfor %}
  • {% endif %} {% if preprint.preprint_doi %}
  • {% include "elements/doi_display.html" with doi=preprint.preprint_doi title=preprint.title %}
  • {% endif %}
{% if preprint.preprintversion_set.count > 1 %}

{% trans "Versions" %}

{% endif %} {% if request.repository.display_public_metrics %}

{% trans "Metrics" %}

  • {% trans "Views" %}: {{ preprint.views.count }}
  • {% trans "Downloads" %}: {{ preprint.downloads.count }}
{% endif %} {% trans "All Preprints" %}
{% endblock %} {% block js %} {% endblock %}