{% extends 'base.html' %} {% load evaluation_filters %} {% block title %}{% translate 'Your EvaP' %} - {{ block.super }}{% endblock %} {% block breadcrumb_bar %} {% endblock %} {% block content %} {{ block.super }}
{% if editable %} {% blocktranslate %}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.{% endblocktranslate %} {% else %} {% blocktranslate %}You cannot edit this evaluation because it has already been approved.{% endblocktranslate %} {% endif %}

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

{% csrf_token %}
{% translate 'Course data' %}
{{ evaluation.course.name_de }}
{{ evaluation.course.name_en }}
{{ evaluation.course.responsibles_names }}
{% for program in evaluation.course.programs.all %} {{ program }} {% endfor %}
{{ evaluation.course.type }}
{% translate 'Evaluation data' %}
{% if evaluation.allow_editors_to_edit %}
{% else %}
{% endif %}
{% include 'evaluation_form_general_questionnaires.html' with evaluation_form=form %}
{% include 'contribution_formset.html' with formset=formset staff=False editable=editable %}
{% if editable %} {% translate 'Approve evaluation' %} {% translate 'Approve evaluation' %} {% blocktranslate trimmed %} 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. {% endblocktranslate %} {% endif %} {% if edit %}{% translate 'Cancel' %}{% else %}{% translate 'Back' %}{% endif %}
{% if preview_html %} {% endif %} {% endblock %} {% block modals %} {{ block.super }} {% blocktranslate asvar title with evaluation_name=evaluation.full_name %}Request account creation for {{ evaluation_name }}{% endblocktranslate %} {% translate '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 %} {% blocktranslate asvar title with evaluation_name=evaluation.full_name %}Request evaluation changes for {{ evaluation_name }}{% endblocktranslate %} {% translate '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 %}