{# Poll options partial — renders vote results for Question-type posts #} {% if item.pollOptions and item.pollOptions.length > 0 %} {% set totalVotes = 0 %} {% for opt in item.pollOptions %} {% set totalVotes = totalVotes + opt.votes %} {% endfor %}
{% for opt in item.pollOptions %} {% set pct = (totalVotes > 0) and ((opt.votes / totalVotes * 100) | round) or 0 %}
{{ opt.name }} {{ pct }}%
{% endfor %}
{% endif %}