{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n %} {% block browser_title %}{% blocktrans %}Evaluation Registration{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans with phase=object.phase.name person=object.person %}Registration of {{ person }} for {{ phase }}{% endblocktrans %}{% endblock %} {% block content %} chevron_left {% trans "Back to list" %} {% if object.phase.status == "evaluation" %} play_arrow {% trans "Start Evaluations" %} {% endif %} {% if object.finishing_possible %} stop {% trans "Finish evaluation" %} {% endif %}
{% trans "Person" %} {{ object.person }}
{% trans "Phase" %} {{ object.phase }}
{% trans "Privacy form" %} {% if object.privacy_accepted %}

check_circle {% blocktrans with dt=object.privacy_accepted_at %} Privacy form accepted at {{ dt }} {% endblocktrans %}

{% if object.privacy_form %}

picture_as_pdf {% trans "Show accepted form" %}

{% endif %} {% endif %}
{% trans "Delete data after the evaluation?" %} {% if object.delete_after_phase %} check {% else %} close {% endif %} {% if object.deleted %} {% blocktrans with dt=object.deleted_at %} Data deleted at {{ dt }} {% endblocktrans %} {% endif %}
{% if object.deleted %} {% else %} {% for group in possible_groups %} {% empty %} {% endfor %} {% endif %}
{% trans "Group" %} {% trans "Progress" %}

delete

{% blocktrans %} The evaluation data have been deleted. {% endblocktrans %}

{{ group.group_name }}
{% blocktrans with current=group.done_evaluations_count total=group.members_count %} {{ current }} of {{ total }} students participated {% endblocktrans %}
{% widthratio group.done_evaluations_count group.members_count 100 as percent %}
{% trans "There are no groups that could evaluate you." %}
{% endblock %}