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

SciPost Submission Page   (for papers submitted to SciPost)

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

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

{% endif %}

Submission:

{{ submission.header_as_table }}

Abstract:

{{ submission.abstract }}

{% 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|is_in_group:'Editorial College' %} {{ 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 user|is_in_group:'Registered Contributors' %} {% 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|is_in_group:'Editorial College' %} {{ 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 user|is_in_group:'Registered Contributors' %} {% 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 user|is_in_group:'Registered Contributors' %}

Contribute a Comment:

{% csrf_token %} {% load crispy_forms_tags %} {% crispy form %}
{% endif %} {% endif %} {% endblock bodysup %}