{% macro choices(poll) %}
{% for choice in poll.choices %}
{% endfor %}
{% endmacro %} {% macro results(poll) %} {% for choice, votes in poll.results.most_common() %} {% endfor %}
{{ votes }}
Participations{{ len(poll.answers) }}
{% endmacro %}