{# -*- 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 and not phase.registrations.all.0.finished %} play_arrow {% trans "Manage Evaluations" %} {% endif %} {% if phase.registrations.all and phase.registrations.all.0.finishing_possible %} stop {% trans "Finish evaluation" %} {% endif %} {% if phase.registrations.all and phase.registrations.all.0.results_accessible %} insights {% trans "View results" %} {% endif %} {% if phase.registrations.all and phase.registrations.all.0.deleted %} {% trans "Data deleted" %} {% endif %} {% endwith %}
{% endblock %}