{# -*- 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 "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 %} |