{% 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 %}
{% 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 %}
| Email Address |
First Name |
Last Name |
{% for author in preprint.preprintauthor_set.all %}
| {{ author.account.email }} |
{{ author.account.first_name }} |
{{ author.account.last_name }} |
{% endfor %}
| Original Filename |
Size |
{% if preprint.submission_file %}
| {{ preprint.submission_file.original_filename }} |
{{ preprint.submission_file.file.size|filesizeformat }} |
{% else %}
| No file uploaded. |
{% endif %}
Complete Submission
{{ request.repository.review_submission_text|safe }}
{% endblock %}