{% load i18n %}

{{ competition.name }}

{{ competition.description_html }}

{% trans "You can vote at the bottom of the page." %}

{% trans "Competition entries" %}

{% trans "Entries are sorted randomly, for fairness." %}

{% for entry in entries %}

{{ entry.name }}

{{ entry.description_html }}
{% endfor %}

{% trans "Vote now!" %}

{% csrf_token %} {{ form.as_p }}