{% extends "base.html" %} {% load i18n static core_tags %} {% block content %}
{% if question.show_results and not question.freetextquestion%}

{{ question.title }}

{% trans "Your answers:" %}

{% for choice in choices %}

{{ choice.title }} {% if question.result_as_percentage %} {{ choice.percentage }}%

{% else %}

{{ choice.votes }} vote{{ choice.votes|pluralize }}

{% endif %} {% endfor %} {% else %}

{% trans "Thank you for voting!" %}

{% endif %} {% trans "Home" %}
{% endblock %}