{% extends 'submissions/base.html' %} {% load render_bundle from webpack_loader %} {% load scipost_extras %} {% load user_groups %} {% load submissions_extras %} {% load bootstrap %} {% load automarkup %} {% block meta_description %}{{ block.super }} Submission Detail {{ submission.title }}{% endblock meta_description %} {% block pagetitle %} Submission: {{ submission.title|truncatechars:40 }}{% endblock pagetitle %} {% block breadcrumb_items %} {{ block.super }} {{ submission.preprint.identifier_w_vn_nr }} {% endblock %} {% block headsup %} {% for author in submission.authors_as_list %} {% endfor %} {% if submission.preprint.citation_pdf_url %} {% endif %} {% endblock headsup %} {% block content %} {% is_ed_admin request.user as is_ed_admin %}
{% if is_author_unchecked %}
{% if request.user.contributor in submission.authors_claims.all %} {% include 'bi/exclamation-circle-fill.html' %} Your authorship claim on this Submission is pending verification by our Editorial Administration. {% else %}

{% include 'bi/exclamation-circle-fill.html' %} 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 %}
{% endif %}
{% if unfinished_report_for_user %}

{% include 'bi/exclamation-circle-fill.html' %} You have an unfinished report for this submission, finish your report here.

{% endif %} {% if is_author %}
{% include 'bi/check-circle-fill.html' %} You are a verified author of this Submission.
{% endif %}

SciPost Submission Page

{{ submission.title }}

by {{ submission.author_list }}

{% if user.is_authenticated %} {% include 'helpdesk/_ticket_for_object_link.html' with object=submission %} {% endif %}
{% if not submission.is_latest %}

{% include 'bi/exclamation-circle-fill.html' %} This is not the latest submitted version.

{% endif %} {% if submission.thread_full.first.publications.published %}

This Submission thread is now published as

{% endif %} {% if unfinished_report_for_user %}

{% include 'bi/exclamation-circle-fill.html' %} You have an unfinished report for this submission, finish your report here.

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

Submission summary

{% include 'submissions/_submission_summary.html' with submission=submission hide_title=1 show_abstract=1 %}
{% if submission.editorial_decision %} {% if is_author and submission.editorial_decision.status == submission.editorial_decision.AWAITING_PUBOFFER_ACCEPTANCE %}

We are awaiting your response to the publication offer.
You can either accept it, or withdraw your manuscript.

{% endif %} {% endif %} {% if submission.author_comments %}

Author comments upon resubmission

{% automarkup submission.author_comments %}
{% endif %} {% if submission.list_of_changes %}

List of changes

{{ submission.list_of_changes|linebreaks }}
{% endif %}
{% include 'submissions/_submission_status.html' with submission=submission %} {% if is_author %} {% include 'submissions/_submission_author_information.html' with submission=submission %} {% elif is_ed_admin or can_read_editorial_information %} {% include 'submissions/_submission_editorial_information.html' with submission=submission %} {% endif %} {% if is_ed_admin %} {% endif %} {% if submission.reports.accepted %}

Reports on this Submission

{% for report in submission.reports.accepted %} {% include '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 'comments/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 }} {% render_bundle 'mermaid' %} {% endblock footer_script %}