{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n rules %} {% block browser_title %}{% blocktrans %}Delete Data From Evaluation Phase{% endblocktrans %}{% endblock %} {% block page_title %} {% trans "Delete Data From Evaluation Phase" %} {% endblock %} {% block content %} chevron_left {% trans "Back to phase" %}
{% for person in object.members_with_registration %} {% if person.evaluation_registrations.all %} {% with registration=person.evaluation_registrations.all.0 %} {% endwith %} {% else %} {% endif %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Status" %} {% trans "Deletion Status" %}
{{ person }} {% trans "Registered" %} {% if registration.delete_after_phase %} {% trans "Data will be deleted" %} {% endif %} {% if registration.deleted %} {% blocktrans with time=registration.deleted_at %} Data deleted at {{ time }} {% endblocktrans %} {% endif %} {% trans "Not registered" %}
{% trans "There are no persons in the group." %}
warning {% trans "This will permanently delete the selected evaluation data. Are you really sure that you want to do that?" %}
{% csrf_token %}
{% endblock %}