{% extends 'scipost/base.html' %} {% load scipost_extras %} {% load submissions_extras %} {% load bootstrap %} {% block pagetitle %} Submission: {{ submission.title|truncatechars:40 }}{% endblock pagetitle %} {% 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 not submission.is_current %}

- This is not the current version.

{% endif %} {% comment %} {% if submission.other_versions or 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 'partials/submissions/submission_version.html' with submission=vn %}
    • {% endfor %}
    {% endif %}
{% endif %} {% endcomment %}

Submission summary

{% include 'partials/submissions/submission_summary.html' with submission=submission hide_title=1 show_abstract=1 %} {% include 'partials/submissions/submission_status.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 %}
{% for invitation in invitations %} {% include 'partials/submissions/refereeing_status_card.html' with invitation=invitation %} {% endfor %} {% include 'partials/submissions/submission_refereeing_history.html' with submission=submission %}
{% 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 'partials/submissions/recommendation_author_content.html' with recommendation=recommendation %} {% endif %} {% endfor %}

Events

{% include 'partials/submissions/submission_events.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 'partials/submissions/report_public.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 'partials/submissions/report_public.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 %} {% if submission.comments.vetted %}
{% include 'scipost/comments_block.html' with comments=submission.comments.vetted %} {% endif %} {# 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 user_is_referee=submission|user_is_referee:request.user %} {% 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 user_is_referee=submission|user_is_referee:request.user %} {% endif %} {% endblock content %}