{% load i18n %}
{% with status=phase.status %}
{% if phase.registration_running %}
{% trans "Registration running" %}
{% endif %}
{% if status == "registration_closed" %}
{% trans "Registration closed" %}
{% elif status == "evaluation" %}
{% trans "Evaluation running" %}
{% elif status == "evaluation_closed" %}
{% trans "Evaluation closed" %}
{% elif status == "results" %}
{% trans "Results available" %}
{% else %}
{% trans "Not yet started" %}
{% endif %}
{% endwith %}