{% extends "admin/core/base.html" %} {% load static %} {% load i18n %} {% load foundation %} {% load field %} {% block title-section %} Review Your {{ request.repository.object_name }} Submission {% endblock %} {% block breadcrumbs %} {% include "admin/elements/breadcrumbs/repository_submission.html" with review=True %} {% endblock %} {% block body %}

{{ request.repository.object_name }} Metadata

Edit Metadata
{% include "admin/elements/layout/key_value_above.html" with key="Title" value=preprint.title %} {% include "admin/elements/layout/key_value_above.html" with key="Abstract" value=preprint.abstract render_line_breaks=True %} {% include "admin/elements/layout/key_value_above.html" with key="License" value=preprint.license.name %} {% include "admin/elements/layout/key_value_above.html" with key="Published DOI" value=preprint.doi %} {% include "admin/elements/layout/key_value_above.html" with key="Subjects" value=preprint.subject.all list=True %} {% include "admin/elements/layout/key_value_above.html" with key="Keywords" value=preprint.keywords.all list=True %} {% include "admin/elements/layout/key_value_above.html" with key="Comments to the Editor" value=preprint.comments_editor render_line_breaks=True %} {% for field_answer in preprint.repositoryfieldanswer_set.all %} {% include "admin/elements/layout/key_value_above.html" with key=field_answer.field.name value=field_answer.answer render_line_breaks=True %} {% endfor %}
{% for author in preprint.preprintauthor_set.all %} {% endfor %}
Email Address First Name Last Name
{{ author.account.email }} {{ author.account.first_name }} {{ author.account.last_name }}
{% if preprint.submission_file %} {% else %} {% endif %}
Original Filename Size
{{ preprint.submission_file.original_filename }} {{ preprint.submission_file.file.size|filesizeformat }}
No file uploaded.

Supplementary Files

Edit Supplementary Files
{% for supp_file in preprint.supplementaryfiles %} {% empty %} {% endfor %}
Label Link
{{ supp_file.label }} {{ supp_file.url }} (external link, opens in new tab)
No supplementary files supplied

Complete Submission

{{ request.repository.review_submission_text|safe }}
{% csrf_token %}
{% endblock %}