{% extends for_rendering_in_modal|yesno:'base_empty.html,base.html' %} {% load static %} {% load evaluation_filters %} {% load student_filters %} {% block title %}{{ evaluation.full_name }} - {% translate 'Evaluation' %} - {{ block.super }}{% endblock %} {% block breadcrumb_bar %} {% endblock %} {% block content %} {{ block.super }} {% if errors_exist %} {% endif %} {% if evaluation.is_midterm_evaluation %}
{% translate 'The results of this evaluation will be published while the course is still running. This means that the contributors will receive this feedback before the final grades for the course have been published.' %}
{% endif %} {% if evaluation.ends_soon %}
{% translate 'The evaluation period will end in' %} {{ evaluation.vote_end_datetime|timeuntil }} ({{ evaluation.vote_end_datetime }}). {% translate 'Your evaluation will only be accepted if you send the completed questionnaire before this deadline ends.' %}
{% endif %} {% if preview and not for_rendering_in_modal %}
{% translate 'Questionnaire Preview' %}
{% blocktranslate %}This is a preview of the questionnaire for the evaluation. Participants will see the questions below.{% endblocktranslate %}
{% endif %}

{{ evaluation.full_name }} ({{ evaluation.course.semester.name }})

{% csrf_token %} {% if small_evaluation_size_warning and not preview %}
{% translate 'Small number of participants' %}
{% blocktranslate %}Only a small number of people can take part in this evaluation. You should be aware that contributors might be able to guess who voted for a specific answer and who wrote a text answer. Results will only be published if two or more people participated in the evaluation.{% endblocktranslate %} {% if evaluation.num_voters == 0 %}
{% blocktranslate %}You're the first person taking part in this evaluation. If you want your text answers to be shown to the contributors even if you remain the only person taking part, please check the box below. Otherwise your text answers will be deleted if no other person takes part in the evaluation.{% endblocktranslate %}
{% endif %}
{% endif %} {% if evaluation_form_group_top %}
{% translate 'General questions' %}
{% include 'student_vote_questionnaire_group.html' with questionnaire_group=evaluation_form_group_top textanswers_visible_to=general_contribution_textanswers_visible_to preview=preview %}
{% endif %} {% if contributor_form_groups %}
{% translate 'Questions about the contributors' %}
{% if not preview %}
{% blocktranslate %}Please vote for all contributors you worked with. Click on "I can't give feedback" to skip a person.{% endblocktranslate %}
{% endif %} {% for contributor, label, form_group, contributor_has_errors, textanswers_visible_to in contributor_form_groups %}
{% include 'student_vote_questionnaire_group.html' with questionnaire_group=form_group preview=preview textanswers_visible_to=textanswers_visible_to contributor=contributor%}
{% endfor %}
{% endif %} {% if evaluation_form_group_bottom %}
{% translate "General questions" %}
{% include "student_vote_questionnaire_group.html" with questionnaire_group=evaluation_form_group_bottom textanswers_visible_to=general_contribution_textanswers_visible_to preview=preview %}
{% endif %} {% if small_evaluation_size_warning and not preview and evaluation.num_voters == 0 %}
{% translate 'Small number of participants' %}
{% blocktranslate %}You're the first person taking part in this evaluation. If you want your text answers to be shown to the contributors even if you remain the only person taking part, please check the box below. Otherwise your text answers will be deleted if no other person takes part in the evaluation.{% endblocktranslate %}
{% endif %} {% if not for_rendering_in_modal %}
{% if preview %} {% translate 'Back' %} {% else %}

{% blocktranslate %}The server can't be reached. Your answers have been stored in your browser and it's safe to leave the page. Please try again later to submit the questionnaire.{% endblocktranslate %}

{% endif %}
{% endif %}
{% endblock %} {% block additional_javascript %} {% if not preview %} {{ text_answer_warnings|text_answer_warning_trigger_strings|json_script:'text-answer-warnings' }} {% endif %} {% endblock %}