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

{{ submission.cover|safe }}

Created {{ submission.ctime|naturalday }} • {{ submission.wordcount }} words • {{ submission.get_status_display }}

Submission text

View in own windowView as PDF

{{ submission.submission_text|safe }}

Review

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

Vote whether to accept or reject this submission

{{ form.comments_raw.label_tag }}
{% if call.owner == user %}

Reviews

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

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