{% extends 'base.html' %} {% load results_templatetags %} {% load evaluation_filters %} {% block title %}{% trans 'Your EvaP' %} - {{ block.super }}{% endblock %} {% block content %} {{ block.super }}
{% trans 'Information for contributors' %}
{% trans 'Delegates' %}
{% blocktrans %}Lecturers can assign delegates to help them with the preparation of the evaluation.{% endblocktrans %} {% if user.is_editor %} {% blocktrans %}You can assign your own delegates on your profile page.{% endblocktrans %}
{% endif %} {% if user.is_delegate %} {% blocktrans %}Evaluations from lecturers who set you as a delegate are marked with a label below.{% endblocktrans %}
{% endif %} {% trans 'More details:' %} {% trans 'FAQ/Delegates' %}

{% trans 'States of the evaluations' %}
{% blocktrans %}You can only edit evaluations which are in the state "prepared". After you approved an evaluation it will automatically change to the state "editor approved" and your preparation is finished.{% endblocktrans %}
{% trans 'More details:' %} {% trans 'FAQ/States' %}

{% trans 'Evaluation Results' %}
{% blocktrans %}Text answers will be shown to the people who were evaluated and to the people responsible for the course. Voting answers will be published for all users of the platform if at least two people participated in the evaluation. The average grade is calculated if the participation rate is at least 20 percent.{% endblocktrans %}
{% trans 'More details:' %} {% trans 'FAQ/Results' %}
{% trans 'Export results' %}
{% if user.is_delegate %}
{% trans 'Delegated evaluations' %}
{% endif %}
{% for semester in semester_list %} {% if semester.evaluations %}
{{ semester.semester_name }}
{% regroup semester.evaluations by course as course_evaluations %} {% for course, evaluations in course_evaluations|dictsort:"grouper.name" %} {% if course.evaluation_count > 1 %} {% endif %} {% for evaluation in evaluations|dictsort:"name" %} {% if evaluation.state >= evaluation.State.IN_EVALUATION %} {% if evaluation.is_single_result %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% endif %} {% endfor %} {% endblock %} {% block modals %} {{ block.super }} {% with modal_id='delegateSelectionModal' %} {% endwith %} {% endblock %} {% block additional_javascript %} {% include 'infobox_js.html' with id='contributorInfobox' %} {% endblock %}