{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n %} {% block browser_title %}{% blocktrans %}Evaluations{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}Evaluations{% endblocktrans %}{% endblock %} {% block content %}
info {% blocktrans %} You can evaluate or already evaluated the following persons: {% endblocktrans %}
{% for group in object_list %} {% endfor %}
{% trans "Person" %} {% trans "Group" %} {% trans "My status" %}
{{ group.registration.person }} {{ group.group_name }} {% if group.done_evaluations.all %} check_circle
{% trans "Evaluation submitted" %} {% else %} cancel
{% trans "Not evaluated" %} {% endif %}
{% if not group.done_evaluations.all and group.registration.phase.status == "evaluation" %} {% if not group.is_unlocked %} {% trans "not yet unlocked" %} {% else %} play_arrow {% trans "Start Evaluation" %} {% endif %} {% endif %}
{% endblock %}