{% extends 'base.html' %} {% load humanize %} {% block content %}

← Back to {{ call.title }}

{% if call.owner == user and call.status > 3 and submission.status not in 'ar'|make_list %}

Submission actions

These are immediate and irreversable. Choose wisely!

Accept submission Reject submission

{% endif %}

Submission information

Cover letter

{{ submission.cover|safe }}

Submission text

View in own windowView as PDFView original file

{{ submission.submission_text|safe }}

Review

{% if can_review %}
{% csrf_token %} Rating
{{ form.yea_nay.label_tag}}

Vote whether to accept or reject this submission

{{ form.comments_raw.label_tag }}
{% else %}

Reviewing is now closed

{% endif %}
{% if call.owner == user %}

Reviews

{{ submission.review_set.count }}/{{ call.reviews_per_submission }} needed reviews • {% with stats=submission.get_review_stats %} Yea/nay: {{ stats.accept }}/{{ stats.reject }} • Average rating: {{ stats.average_rating }} {% endwith %}

{% for review in submission.review_set.all %} {% empty %} {% endfor %}
Review Rating Yea/Nay Created Updated
Review by {{ review.owner.username }} {{ review.rating }}/5 {{ review.get_yea_nay_display }} {{ review.ctime|naturaltime }} {{ review.mtime|naturaltime }}
There are no reviews to list
{% endif %} {% endblock %}