{% extends "core/base.html" %} {% load static %} {% load hooks %} {% load i18n %} {% load bootstrap4 %} {% load next_url %} {% load dates %} {% load settings %} {% block title %}{{ preprint.title }}{% endblock %} {% block head %} {% include "common/metadata/preprint_dc.html" %} {% include "common/metadata/preprint_citation.html" %} {% endblock %} {% block body %}
{{ preprint.title|striptags }}

{{ 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 }}.

{% if preprint.current_version_file_type == 'html' %}
Preprint Body {{ preprint.current_version.html|safe }}
{% elif preprint.current_version_file_type == 'pdf' %} {% else %}
{% if preprint.current_version.file %}

This {{ request.repository.object_name }} has no visible version.

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

This {{ request.repository.object_name }} does not have any files associated with it.

{% endif %}
{% endif %} {% if request.repository.enable_comments or request.repository.enable_invited_comments %}
{% if request.repository.enable_comments %} {% trans 'Add a Comment' %} {% if request.user.is_authenticated %}
{% csrf_token %} {% bootstrap_form form %}

{% else %}

You must log in to post a comment.

{% endif %} {% endif %}

{% trans 'Comments' %} {% 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 %}

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

{% endfor %}
{% endif %}
{% if preprint.current_version.file %}

{% trans "Downloads" %}

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

{% endif %} {% if preprint.supplementaryfiles %}

{% trans "Supplementary Files" %}

    {% for link in preprint.supplementaryfiles %}
  • {{ link.label }}
  • {% empty %}
  • No Supplementary File
  • {% endfor %}
{% endif %}

{% 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|linebreaksbr }}

{% if preprint.preprint_doi %}

DOI

{% include "elements/doi_display.html" with doi=preprint.preprint_doi title=preprint.title %}

{% endif %} {% if preprint.subject.all %}

{% trans 'Subjects' %}

{% include "common/repository/subject_display.html" %}

{% endif %}

{% trans 'Keywords' %}

{% for keyword in preprint.keywords.all %}{{ keyword.word }}{% if not forloop.last %}, {% endif %}{% endfor %}

Dates

Published: {{ preprint.date_published }}

{% if preprint.preprintversion_set.count > 0 and preprint.current_version and preprint.current_version.date_time > preprint.date_published %}

Last Updated: {{ preprint.current_version.date_time }}

{% endif %} {% if preprint.preprintversion_set.count > 1 %}

Older Versions

{% endif %} {% if preprint.license %}

{% trans "License" %}

{% if preprint.license.url %}{% endif %}{{ preprint.license.name }}{% if preprint.license.url %}{% endif %}

{% endif %} {% if preprint.display_additional_fields %}

Additional Metadata

{% for answer in preprint.display_additional_fields %}

{{ answer.field.name }}:
{{ answer.answer|safe }}

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

{% trans "Metrics" %}

{% trans "Views" %}: {{ preprint.views.count }}

{% trans "Downloads" %}: {{ preprint.downloads.count }}

{% endif %}
{% hook 'article_footer_block' %}
{% endblock %} {% block js %} {% endblock %}