{% extends "orga/submission/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load rich_text %} {% block submission_content %}
{% if not read_only %} {% blocktrans trimmed %} Please give a fair review on why you'd like to see this submission at the conference, or why you think it would not be a good fit. {% endblocktrans %} {% 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. {% endblocktrans %} {% endif %} {% if override_left %} {% blocktrans trimmed with count=override_left %} You have {{ count }} override votes left. {% endblocktrans %} {% endif %}
{% if not form.instance.pk %}
{% csrf_token %}
{{ submission.abstract|rich_text }}
{{ submission.description|rich_text }}
{{ submission.notes|rich_text }}
{% bootstrap_form form layout='event' %}
{% endif %} {% if form.instance.pk %} {% csrf_token %} {% for review in submission.reviews.all %} {% if review != form.instance %} {% endif %} {% endfor %}
{% trans "Points" %} {% trans "Review" %}
{% bootstrap_field form.score layout="inline" %} {% bootstrap_field form.text layout="inline" %} {% if not read_only %}
{{ review.display_score }} {{ review.text }} {{ review.user.get_display_name }}
{% endif %} {% endblock %}