{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load i18n %}
{% block browser_title %}{% blocktrans %}Evaluations{% endblocktrans %}{% endblock %}
{% block page_title %}{% blocktrans %}Evaluations{% endblocktrans %}{% endblock %}
{% block content %}
{% 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 %} |