{% extends "orga/settings/base.html" %} {% load bootstrap4 %} {% load compress %} {% load i18n %} {% load formset_tags %} {% load static %} {% block settings_content %} {% compress js %} {% endcompress %}
{% csrf_token %}

{% trans "Review settings" %}

{% blocktrans trimmed %} If you require neither a review score nor a review text, reviewers will be offered an additional {{ quotation_open }}Abstain{{ quotation_close }} button when reviewing submissions. {% endblocktrans %}
{% bootstrap_form form layout='event' %}
{% if action == "edit" or action == "create" %} {% endif %}

{% trans "Review phases" %}

{% blocktrans trimmed %} Review phases allow you to structure your review process. By default, there are two review phases: The review itself, and the selection process once the review phase is over. But you could for example add another review and selection phase after that, if you require additional review rounds. {% endblocktrans %}
{{ formset.management_form }} {% bootstrap_formset_errors formset %}
{% for form in formset %}

{% trans "Review Phase" %} {% bootstrap_field form.name form_group_class="" layout="inline" %} {% if action != 'view' %} {% if not form.instance.is_active %} {% else %} {% endif %} {% endif %}

{{ form.id }} {% bootstrap_field form.DELETE form_group_class="" layout="event" %}
{% bootstrap_form_errors form %} {% bootstrap_form form layout="event" form_group_class="" exclude="DELETE,name" %}
{% endfor %}
{% if action == "edit" or action == "create" %}
{% endif %}
{% endblock %}