{% extends 'scipost/_personal_page_base.html' %} {% block breadcrumb_items %} {{block.super}} Vet submitted Comments {% endblock %} {% load bootstrap %} {% load filename %} {% load file_extentions %} {% block pagetitle %}: vet comments{% endblock pagetitle %} {% block content %} {% if not comments_to_vet %}

There are no comments for you to vet.

Return to personal page

{% else %}

SciPost Comments to vet:

{% for comment_to_vet in comments_to_vet %}
{% if comment_to_vet.commentary %}

From Commentary (link)

{% include 'commentaries/_commentary_summary.html' with commentary=comment_to_vet.commentary %} {% endif %} {% if comment_to_vet.submission %}

From Submission (link)

{% include 'submissions/_submission_summary_short.html' with submission=comment_to_vet.submission %} {% endif %} {% if comment_to_vet.thesislink %}

From Thesis Link (link)

{% include 'theses/_thesislink_information.html' with thesislink=comment_to_vet.thesislink %} {% endif %}

The Comment to be vetted:

{% include 'comments/_comment_identifier_vetting.html' with comment=comment_to_vet %}

Comment text:

{{ comment_to_vet.comment_text }}

{% if comment_to_vet.file_attachment %}

Attachment:

{% if comment_to_vet.file_attachment|is_image %} {% else %} {{ comment_to_vet.file_attachment|filename }}
{{ comment_to_vet.file_attachment.size|filesizeformat }} {% endif %}

{% endif %} {% if comment_to_vet.remarks_for_editors %}

Remarks for Editors only:

{{ comment_to_vet.remarks_for_editors }}

{% endif %}
{% csrf_token %} {{ form|bootstrap }}
{% endfor %}
{% endif %} {% endblock content %}