{% extends 'scipost/base.html' %} {% block pagetitle %}: submission detail{% endblock pagetitle %} {% block headsup %} {% load scipost_extras %} {% load submissions_extras %} {% load filename %} {% load file_extentions %} {% endblock headsup %} {% block content %}

SciPost Submission Page

{% if not submission.is_current %}

This is not the current version.

{% endif %} {% if user.contributor == submission.editor_in_charge %}

(You are the Editor-in-charge, go to the Editorial Page to take editorial actions)

{% endif %}
{% if other_versions %}

Other versions of this Submission (with Reports) exist:

{% for vn in other_versions %} {% include 'submissions/_submission_version.html' with submission=vn %} {% endfor %}
{% endif %}
{% include 'submissions/_submission_summary.html' with submission=submission %} {% include 'submissions/_submission_status_block.html' with submission=submission %}

{% if submission.author_comments %}

Author comments upon resubmission

{{ submission.author_comments|linebreaks }}
{% endif %} {% if submission.list_of_changes %}

List of changes

{{ submission.list_of_changes|linebreaks }}
{% endif %}
{% if is_author or user|is_in_group:'Editorial College' or user|is_in_group:'Editorial Administrators' %} {% if recommendation %} {% if user|is_in_group:'Editorial College' or user|is_in_group:'Editorial Administrators' or recommendation|is_viewable_by_authors %}
{% include 'submissions/_recommendation_author_content.html' with recommendation=recommendation %}
{% endif %} {% endif %} {% endif %} {% if user.is_authenticated and user|is_in_group:'Registered Contributors' %}

Actions

{% endif %} {% if invited_reports %}

Invited Reports on this Submission

{% for report in invited_reports %} {% include 'submissions/_single_public_report.html' with report=report user=request.user perms=perms %} {% endfor %}
{% endif %} {% if contributed_reports %}

Contributed Reports on this Submission

{% for report in contributed_reports %} {% include 'submissions/_single_public_report.html' with report=report user=request.user perms=perms %} {% endfor %}
{% endif %} {% include 'scipost/comments_block.html' %} {% include 'comments/new_comment.html' with object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting %} {% endblock content %}