{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load i18n rules %}
{% block browser_title %}{% blocktrans %}Evaluation Phase{% endblocktrans %}{% endblock %}
{% block page_title %}{{ object.name }}{% endblock %}
{% block content %}
chevron_left
{% trans "Back to list" %}
edit
{% trans "Edit" %}
delete
{% trans "Delete" %}
delete
{% trans "Data Deletion" %}
{% trans "Status" %} |
{% include "evalu/phase/status.html" with phase=object %}
|
{% trans "Evaluated group" %} |
{{ object.evaluated_group|default:_("No group specified") }}
{% if object.evaluated_group %}({{ object.evaluated_group.members.count }} {% trans "members" %}){% endif %}
|
{% trans "Registration period" %} |
{{ object.registration_date_start }}–{{ object.registration_date_end }} |
{% trans "Evaluation period" %} |
{{ object.evaluation_date_start }}–{{ object.evaluation_date_end }} |
{% trans "Privacy notice" %} |
{{ object.privacy_notice|safe }} |
{% trans "Name" %} |
{% trans "Status" %} |
{% for person in members %}
{{ person }} |
{% if person.evaluation_registrations.all %}
{% with registration=person.evaluation_registrations.all.0 %}
{% trans "Registered" %}
{% has_perm "evalu.view_evaluationregistration_rule" user registration as can_view_registration %}
{% if can_view_registration %}
{% trans "Show registration" %}
{% endif %}
{# FIXME PROGRESS BAR #}
{% endwith %}
{% else %}
{% trans "Not registered" %}
{% endif %}
|
{% empty %}
{% trans "There are no persons in the group." %} |
{% endfor %}
{% endblock %}