{% extends 'staff_semester_base.html' %} {% block content %} {{ block.super }}
{% csrf_token %} {% for evaluation in evaluations %} {% endfor %}

{{ confirmation_message }}

{% for evaluation in evaluations %} {% include 'staff_semester_view_evaluation.html' with semester=semester evaluation=evaluation info_only=True %} {% endfor %}
{% if show_email_checkbox %}
{% if email_template %}
{% include "staff_email_preview_form.html" with email_template=email_template id_suffix="" heading="" %}
{% else %}
{% translate 'Notify Contributors' as heading %} {% include "staff_email_preview_form.html" with email_template=email_template_contributor id_suffix="_contributor" heading=heading %}
{% translate 'Notify Participants' as heading %} {% include "staff_email_preview_form.html" with email_template=email_template_participant id_suffix="_participant" heading=heading %}
{% endif %}
{% endif %} {% if show_delete_answers_checkbox %}
{% endif %}
{% translate 'Reset Evaluation' %} {% blocktranslate trimmed %} This will delete all previously received answers. Voters will have to resubmit the evaluation. {% endblocktranslate %} {% comment %} The modal needs an element in the slot, otherwise it throws an error. No button is needed, as the modal is conditionally shown via JS. {% endcomment %} {% translate 'Cancel' %}
{% endblock %}