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

{% translate "Review settings" %}

{% blocktranslate 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 proposals. {% endblocktranslate %}
{% bootstrap_form form layout='event' %}
{% if action == "edit" or action == "create" %} {% endif %}

{% translate "Review scoring" %}

{% blocktranslate trimmed %} You can ask reviewers to provide one or multiple scores. If you ask for multiple scores, they will be added up to a final total score. If you want, this total score can be weighted. Currently, the total score is calculated as: {% endblocktranslate %}

{# TODO warn about changing score categories #}
{{ scores_formset.management_form }} {% bootstrap_formset_errors scores_formset %}
{% for form in scores_formset %}

{% translate "Review Score category" %} {% bootstrap_field form.name form_group_class="" layout="inline" %} {% if action != 'view' %} {% endif %}

{{ form.id }} {{ form.new_scores }} {% bootstrap_field form.DELETE form_group_class="" layout="event" %}
{% bootstrap_form_errors form %} {% bootstrap_field form.is_independent layout="event" form_group_class="" %} {% bootstrap_field form.weight layout="event" form_group_class="" %} {% bootstrap_field form.required layout="event" form_group_class="" %} {% bootstrap_field form.active layout="event" form_group_class="" %} {% if form.limit_tracks %}{% bootstrap_field form.limit_tracks layout="event" form_group_class="" %}{% endif %} {% for label_pair in form.get_label_fields %}
{% if forloop.first %} {% endif %}
{% bootstrap_field label_pair.0 layout="inline" form_group_class="mr-2 ml-0 pl-0 col-md-1 text-right" %} {% bootstrap_field label_pair.1 layout="inline" form_group_class="" %} {% if forloop.first %}
{% endif %}
{% empty %}
{% endfor %}
{% endfor %}
{% if action == "edit" or action == "create" %}
{% endif %}

{% translate "Review phases" %}

{% blocktranslate 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. {% endblocktranslate %}
{{ phases_formset.management_form }} {% bootstrap_formset_errors phases_formset %}
{% for form in phases_formset %}

{% translate "Review Phase" %} {% bootstrap_field form.name form_group_class="" layout="inline" %} {% if action != 'view' %} {% if not form.instance.is_active %} {% else %} {% endif %} {% include "orga/includes/order_object.html" with object=form.instance attrs="mr-2 keep-scroll-position" %} {% 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 %}