{% 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 %}
{% if is_author_unchecked %}

Please advise

The system flagged you as a potential author of this Submission. Please clarify this here. Particular actions and information may be blocked until your authorship has been verified.
{% endif %} {% if unfinished_report_for_user %}
You have an unfinished report for this submission, finish your report here.
{% endif %}

SciPost Submission Page

{{submission.title}}

by {{submission.author_list}}

{% if submission.publication and submission.publication.is_published %}

- Published as {% if submission.publication.in_issue %} {{submission.publication.in_issue.in_volume.in_journal.abbreviation_citation}} {{submission.publication.in_issue.in_volume.number}}, {{submission.publication.get_paper_nr}} {% else %} {{submission.publication.in_journal.abbreviation_citation}}, {{submission.publication.paper_nr}} {% endif %} ({{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 not submission.is_current %}

- This is not the current version.

{% endif %}

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 %}
{% include 'partials/submissions/submission_topics_card.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 %} {% include 'partials/submissions/submission_author_information.html' with submission=submission %} {% endif %} {% if can_read_editorial_information %} {% include 'partials/submissions/submission_editorial_information.html' with submission=submission %} {% endif %} {% if perms.scipost.can_submit_comments %}

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

Show/hide contributed reports
{% 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 comment_form %} {% if not user.is_authenticated and submission.comments.vetted.exists %} {% include 'comments/new_comment.html' with form=comment_form 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 form=comment_form 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 %} {% endif %} {% endblock content %} {% block footer_script %} {{ block.super }} {{ select_topic_form.media }} {% endblock footer_script %}