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

SciPost Submission Page   (for papers submitted to SciPost)


Submission:

{{ submission.header_as_table|safe }}

Abstract:

{{ submission.abstract }}

{% if reports %}

Reports on this Submission

{% for report in reports %}

{{ report.id }}

Date: {{ report.date_submitted }}

Strengths:

{{ report.strengths }}

Weaknesses:

{{ report.weaknesses }}

Report:

{{ report.report }}

{% for reply in author_replies %} {% if reply.in_reply_to_report.id = report.id %}

Author reply ({{ reply.date_submitted }}):

{{ reply.reply_text|linebreaks }}

{% endif %} {% endfor %} {% if user.is_authenticated and user.contributor.rank > 0 %}

{% endif %} {% endfor %}
{% endif %} {% if user.is_authenticated and submission.open_for_reporting and user.contributor.rank > 0 %}

{% endif %} {% if comments %}

Comments on this Submission

{% for comment in comments %}

{{ comment.id }}   {% if comment.in_reply_to %} (in reply to {{ comment.in_reply_to.id }}) {% endif %}

Date: {{ comment.date_submitted }}

Category:

    {% if comment.is_rem %}
  • remark
  • {% endif %} {% if comment.is_que %}
  • question
  • {% endif %} {% if comment.is_ans %}
  • answer to question
  • {% endif %} {% if comment.is_obj %}
  • objection
  • {% endif %} {% if comment.is_rep %}
  • reply to objection
  • {% endif %} {% if comment.is_val %}
  • validation or rederivation
  • {% endif %} {% if comment.is_lit %}
  • pointer to related literature
  • {% endif %} {% if comment.is_sug %}
  • suggestion for further work
  • {% endif %}

{{ comment.comment_text|linebreaks }}

{% for reply in author_replies %} {% if reply.in_reply_to_comment.id = comment.id %}

Author reply ({{ reply.date_submitted }}):

{{ reply.reply_text|linebreaks }}

{% endif %} {% endfor %} {% if user.is_authenticated and user.contributor.rank > 0 %}

{% endif %} {% endfor %}
{% endif %} {% if user.is_authenticated and submission.open_for_commenting and user.contributor.rank > 0 %}

Contribute a Comment:

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