{% extends 'base.html' %} {% load evaluation_filters %} {% block title %}{% trans 'Your EvaP' %} - {{ block.super }}{% endblock %} {% block breadcrumb_bar %} {% endblock %} {% block content %} {{ block.super }}
{% if editable %} {% blocktrans %}Please review the evaluation's details below, add all contributors and select suitable questionnaires. Once everything is okay, please approve the evaluation on the bottom of the page.{% endblocktrans %} {% else %} {% blocktrans %}You cannot edit this evaluation because it has already been approved.{% endblocktrans %} {% endif %}

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

{% csrf_token %}
{% trans 'Course data' %}
{{ evaluation.course.name_de }}
{{ evaluation.course.name_en }}
{{ evaluation.course.responsibles_names }}
{% for degree in evaluation.course.degrees.all %} {{ degree }} {% endfor %}
{{ evaluation.course.type }}
{% trans 'Evaluation data' %}
{% if not evaluation.allow_editors_to_edit %}
{% endif %}
{% include 'evaluation_form_general_questionnaires.html' with evaluation_form=form %}
{% include 'contribution_formset.html' with formset=formset staff=False editable=editable %}
{% trans 'Participants' %}

{% trans 'These people will be invited for the evaluation. Please let us know if this data is not correct.' %}

    {% for p in evaluation.participants.all|dictsort:'last_name' %}
  • {{ p.full_name }}
  • {% endfor %}
{% if editable %} {# webtest does not allow submission with value "approve" if no such button exists #} {% endif %} {% if edit %}{% trans 'Cancel' %}{% else %}{% trans 'Back' %}{% endif %}
{% if preview_html %} {% endif %} {% endblock %} {% block modals %} {{ block.super }} {% trans 'Approve evaluation' as title %} {% blocktrans asvar question%}Do you want to approve this evaluation? This will allow the evaluation team to proceed with the preparation, but you won't be able to make any further changes.{% endblocktrans %} {% trans 'Approve evaluation' as action_text %} {% include 'confirmation_modal.html' with modal_id='approveEvaluationModal' title=title question=question action_text=action_text btn_type='primary' %} {% blocktrans asvar title with evaluation_name=evaluation.full_name|safe %}Request participant changes for {{ evaluation_name }}{% endblocktrans %} {% trans 'Please tell us what changes to the participants list we should make.' as teaser %} {% include 'contact_modal.html' with modal_id='changeParticipantRequestModal' user=request.user title=title teaser=teaser %} {% trans 'Request account creation' as title %} {% trans 'Please tell us which new account we should create. We need the name and email for all new accounts.' as teaser %} {% include 'contact_modal.html' with modal_id='createAccountRequestModal' user=request.user title=title teaser=teaser %} {% blocktrans asvar title with evaluation_name=evaluation.full_name|safe %}Request evaluation changes for {{ evaluation_name }}{% endblocktrans %} {% trans 'Please tell us what changes to the evaluation we should make.' as teaser %} {% include 'contact_modal.html' with modal_id='changeEvaluationRequestModal' user=request.user title=title teaser=teaser %} {% endblock %} {% block additional_javascript %} {% include 'evap_evaluation_edit_js.html' %} {% if preview_html %} {% endif %} {% endblock %}