{# -*- 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" %}
{% trans "Name" %} | {% trans "Status" %} | {% trans "Deletion Status" %} | ||
---|---|---|---|---|
{{ person }} | {% if person.evaluation_registrations.all %} {% with registration=person.evaluation_registrations.all.0 %}{% 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 %} | {% endwith %} {% else %}{% trans "Not registered" %} | {% endif %} |
{% trans "There are no persons in the group." %} |