{% load i18n %}
{% if form_error %}

{% trans "You can't confirm this vote right now" %}

{% trans "Error is:" %} {{ form_error }}

{% else %}

{% trans "Vote confirmation." %}

{% trans "You need to confirm your vote by clicking the button below." %}

{% trans "Vote details" %}

{% blocktrans with competition_name=vote.competition.name %} You are voting in competition {{ competition_name }}. {% endblocktrans %}

{{ competition.description_html }}

{% trans "You have selected following entries" %}

{% trans "To confirm your vote please click button below." %}

{% csrf_token %}
{% endif %}