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

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:

{% endif %}

Submission:

{{ submission.header_as_table }}

Abstract:

{{ submission.abstract }}

Status:

{{ submission.status_info_as_table }} {% 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 %}

Editorial Recommendation

{{ recommendation.print_for_authors }}
{% 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 %}
{% if user.contributor == submission.editor_in_charge or user|is_in_group:'Editorial Administrators' and not is_author or user|is_in_group:'Editorial Administrators' and not is_author_unchecked %} {% if report.flagged %}

CAUTION: check if this referee has been flagged by the authors

{% endif %} {{ report.print_contents_for_editors|linebreaks }} {% else %} {{ report.print_identifier }} {{ report.print_contents|linebreaks }} {% endif %}

Reply to this Report (authors only)

{% for reply in author_replies %} {% if reply.in_reply_to_report %} {% if reply.in_reply_to_report.id == report.id %}

{{ reply.print_identifier }} {{ reply.categories_as_ul }}
{% if user.is_authenticated and perms.scipost.can_express_opinion_on_comments %} {% if user.contributor != reply.author %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% else %} {{ reply.opinions_as_ul }} {% endif %} {% endif %}

{{ reply.comment_text|linebreaks }}

{% endif %} {% endif %} {% endfor %} {% endfor %}
{% endif %} {% if contributed_reports %}

Contributed Reports on this Submission

{% for report in contributed_reports %}
{% if user.contributor == submission.editor_in_charge or user|is_in_group:'Editorial Administrators' and not is_author or user|is_in_group:'Editorial Administrators' and not is_author_unchecked %} {% if report.flagged %}

CAUTION: check if this referee has been flagged by the authors

{% endif %} {{ report.print_contents_for_editors }} {% else %} {{ report.print_identifier }} {{ report.print_contents }} {% endif %}

Reply to this Report (authors only)

{% for reply in author_replies %} {% if reply.in_reply_to_report %} {% if reply.in_reply_to_report.id == report.id %}

{{ reply.print_identifier }} {{ reply.categories_as_ul }}
{% if user.is_authenticated and perms.scipost.can_express_opinion_on_comments %} {% if user.contributor != reply.author %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% else %} {{ reply.opinions_as_ul }} {% endif %} {% endif %}

{{ reply.comment_text|linebreaks }}

{% endif %} {% endif %} {% endfor %} {% endfor %}
{% endif %} {% include 'scipost/comments_block.html' %} {% if user.is_authenticated and submission.open_for_commenting and perms.scipost.can_submit_comments %}

Contribute a Comment:

{% csrf_token %} {% load crispy_forms_tags %} {% crispy form %}

Preview of your comment:

{% endif %} {% endblock bodysup %}