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

Ratings:


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

Reports on this Submission

{% for report in reports %}

{{ report.id }}

Date: {{ report.date_submitted }}

Ratings:

  • relevance: {{ report.relevance_rating }}% ({{ report.nr_relevance_ratings }})
  • importance: {{ report.importance_rating }}% ({{ report.nr_importance_ratings }})
  • clarity: {{ report.clarity_rating }}% ({{ report.nr_clarity_ratings }})
  • validity: {{ report.validity_rating }}% ({{ report.nr_validity_ratings }})
  • rigour: {{ report.rigour_rating }}% ({{ report.nr_rigour_ratings }})

Strengths:

{{ report.strengths }}

Weaknesses:

{{ report.weaknesses }}

Report:

{{ report.report }}


{% if user.is_authenticated and user.contributor.rank > 0 %}
{% csrf_token %}
    {{ report_rating_form.as_ul }}
{% endif %}
{% for reply in author_replies %} {% if reply.in_reply_to_report.id = report.id %}

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

Ratings:

  • relevance: {{ reply.relevance_rating }}% ({{ reply.nr_relevance_ratings }})
  • importance: {{ reply.importance_rating }}% ({{ reply.nr_importance_ratings }})
  • clarity: {{ reply.clarity_rating }}% ({{ reply.nr_clarity_ratings }})
  • validity: {{ reply.validity_rating }}% ({{ reply.nr_validity_ratings }})
  • rigour: {{ reply.rigour_rating }}% ({{ reply.nr_rigour_ratings }})

{{ reply.reply_text|linebreaks }}

{% if user.is_authenticated and user.contributor.rank > 0 %}
{% csrf_token %}
    {{ authorreply_rating_form.as_ul }}
{% endif %} {% 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 %}

Ratings:

  • Relevance: {{ comment.relevance_rating }}% ({{ comment.nr_relevance_ratings }})
  • Importance: {{ comment.importance_rating }}% ({{ comment.nr_importance_ratings }})
  • Clarity: {{ comment.clarity_rating }}% ({{ comment.nr_clarity_ratings }})
  • Validity: {{ comment.validity_rating }}% ({{ comment.nr_validity_ratings }})
  • Rigour: {{ comment.rigour_rating }}% ({{ comment.nr_rigour_ratings }})

{{ comment.comment_text|linebreaks }}


{% if user.is_authenticated and user.contributor.rank > 0 %}
{% csrf_token %}
    {{ comment_rating_form.as_ul }}
{% endif %}
{% for reply in author_replies %} {% if reply.in_reply_to_comment.id = comment.id %}

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

Ratings:

  • relevance: {{ reply.relevance_rating }}% ({{ reply.nr_relevance_ratings }})
  • importance: {{ reply.importance_rating }}% ({{ reply.nr_importance_ratings }})
  • clarity: {{ reply.clarity_rating }}% ({{ reply.nr_clarity_ratings }})
  • validity: {{ reply.validity_rating }}% ({{ reply.nr_validity_ratings }})
  • rigour: {{ reply.rigour_rating }}% ({{ reply.nr_rigour_ratings }})

{{ reply.reply_text|linebreaks }}

{% if user.is_authenticated and user.contributor.rank > 0 %}
{% csrf_token %}
    {{ authorreply_rating_form.as_ul }}
{% endif %} {% 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 %}