{% load i18n %}

{{ survey }}

{{ survey.description }}

{% if not user_choice %}

{{ _('Choose an option') }}

{% csrf_token %} {% for obj in survey.options.all %} {% with obj.vote_percentage|floatformat:"0" as vote_percentage %}
{% endwith %} {% endfor %}
{% else %}

{% blocktrans with option=user_choice.option date=user_choice.create_date %}You have voted for {{ option }} on date {{ date }}{% endblocktrans %}

{% for obj in survey.options.all %} {% with obj.vote_percentage|floatformat:"0" as vote_percentage %}
{% if obj.image %} {% endif %}

{{ obj }}

{{ obj.description }}

{% endwith %} {% endfor %}
{% endif %}