{% extends "orga/submission/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load rich_text %} {% block submission_content %}
{% if not read_only %} {{ request.event.settings.review_help_text|rich_text }} {% if not form.instance.pk %} {% blocktrans trimmed %} You will be able to see other reviews once you have given yours. {% endblocktrans %} {% endif %} {% else %} {% blocktrans trimmed %} This submission can no longer be reviewed, as a decision regarding its role in this event has already been made, or the review deadline is over. {% endblocktrans %} {% endif %} {% if override_left %} {% blocktrans trimmed with count=override_left %} You have {{ count }} override votes left. {% endblocktrans %} {% endif %}
{% if not form.instance.pk and not read_only %}
{% csrf_token %}
{{ submission.submission_type }}
{{ submission.abstract|rich_text }}
{{ submission.description|rich_text }}
{{ submission.notes|rich_text }}
{% bootstrap_field form.score layout='event' %} {% bootstrap_form qform layout='event' %} {% bootstrap_field form.text layout='event' %}
{% endif %} {% if form.instance.pk or read_only %} {% for field in qform %} {% endfor %} {% if form.instance.pk or not read_only %} {% csrf_token %} {% for field in qform %} {% endfor %} {% endif %} {% for review in reviews %} {% if review != form.instance %} {% for answer in review.answers %} {% endfor %} {% endif %} {% endfor %}
{% trans "Points" %}{{ field.label }}{% trans "Review" %}
{% bootstrap_field form.score layout="inline" %}{% bootstrap_field field layout="inline" %}{% bootstrap_field form.text layout="inline" %} {% if not read_only %}
{{ review.score }} {{ answer.answer }} {{ review.text }} {{ review.user }}
{% endif %} {% endblock %}