{% extends "meeting-base.html" %} {% load staticfiles thumbnail %} {% block headtitle %}Voting{% endblock %} {% block content %}
Voting
{% for question in vote.get_questions %}

{{ question }}

{% for option in question.get_votes %}
{{ option.name }}
{{ option.percentage|floatformat }}%
{% endfor %} {% endfor %}
{% endblock %}