{% extends "base/resources.html" %} {% load i18n %} {% block main %}

{{ object }}

{{ object.description }}

{% if not user_choice %}

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

{% if user.is_authenticated %}
{% csrf_token %} {% else %} {% endif %} {% for obj in object.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 object.options.all %} {% with obj.vote_percentage|floatformat:"0" as vote_percentage %}
{% if obj.image %} {% endif %}

{{ obj }}

{{ obj.description }}

{% endwith %} {% endfor %}
{% endif %}
{% include 'widgets/share_social_links.html' %}
{% endblock main %} {% block script %} {% endblock script %}