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

SciPost Submission Page

{{submission.title}}

by {{submission.author_list}}

{% if submission.publication %}

- Published as {{submission.publication.in_issue.in_volume.in_journal.get_abbreviation_citation}} {{submission.publication.in_issue.in_volume.number}}, {{submission.publication.get_paper_nr}} ({{submission.publication.publication_date|date:'Y'}})

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

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

{% endif %} {% if unfinished_report_for_user %}

- ! You have an unfinished report for this submission, finish your report here.

{% endif %} {% if submission.other_versions and not submission.is_current %}
    {% if not submission.is_current %}
  • This is not the current version.

  • {% endif %} {% if submission.other_versions %}
  • Other versions of this Submission (with Reports) exist:
    • {% for vn in submission.other_versions %}
    • {% include 'submissions/_submission_version.html' with submission=vn %}
    • {% endfor %}
    {% endif %}
{% endif %}

Submission summary

{% include 'submissions/_submission_summary.html' with submission=submission hide_title=1 %} {% 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' %} {% for recommendation in recommendations %} {% 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 %} {% endfor %}

Events

Show/hide events
{% include 'submissions/submission_event_list.html' with events=submission.events.for_author %}
{% endif %} {% if is_author or user|is_in_group:'Editorial Administrators' %} {% if submission.production_stream.proofs.for_authors.exists %}

Proofs

{% endif %} {% endif %} {% if user.is_authenticated and user|is_in_group:'Registered Contributors' %}

Actions

{% if perms.scipost.can_manage_reports %}

Admin Actions

{% endif %} {% if invited_reports %} {#
#}

Invited Reports on this Submission

Toggle invited reports view
{% 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

Toggle contributed reports view
{% for report in contributed_reports %} {% include 'submissions/_single_public_report.html' with report=report user=request.user perms=perms %} {% endfor %}
{% endif %} {% if not user.is_authenticated %} {% if submission.comments.vetted.exists %}

Login to report

{% else %}

Login to report or comment

{% endif %} {% endif %} {% include 'scipost/comments_block.html' with comments=submission.comments.vetted %} {# This is an apparent redundant logic block; however, it makes sure the "login to ..." links wouldn't be shown twice! #} {% if not user.is_authenticated and submission.comments.vetted.exists %} {% include 'comments/new_comment.html' with object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting %} {% elif user.is_authenticated %} {% include 'comments/new_comment.html' with object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting %} {% endif %} {% endblock content %}