{# -*- 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 %} In the following list, you can see all evaluations you can participate or have already participated in the past. If you want to participate in an evaluation, please register yourself using the "Register" button. {% endblocktrans %}
{% for phase in object_list %} {% endfor %}
{% trans "Status" %} {% trans "Name" %} {% trans "Registration period" %} {% trans "Evaluation period" %} {% trans "Registered" %}
{% include "evalu/phase/status.html" with phase=phase %} {{ phase.name }} {{ phase.registration_date_start }}–{{ phase.registration_date_end }} {{ phase.evaluation_date_start }}–{{ phase.evaluation_date_end }} {% if phase.registrations.all %} check_circle {% trans "Show" %} {% else %} cancel {% endif %} {% with status=phase.status %} {% if phase.registration_running %} {% if not phase.registrations.all %} edit {% trans "Register" %} {% endif %} {% endif %} {% if status == "evaluation" and phase.registrations.all %} play_arrow {% trans "Start Evaluations" %} {% elif status == "results" and phase.registrations.all %} insights {% trans "View results" %} {% endif %} {% endwith %}
{% endblock %}