{% extends '__base__.html' %} {% load i18n %} {% block content %}

{% trans "Select the contest" %}

{% for contest in object_list %}
{{ contest.title }}

{{ contest.description|default_if_none:"" }}

{% empty %}

{% trans "Sorry, there is no active contest at the moment." %}

{% endfor %}
{% endblock content %}