{% extends "layout/backend.j2" %} {% block content %}

Vote: {{ ballot.name }}

Description {{ ballot.description }}
Start {{ ballot.start_at }}
End {{ ballot.end_at }}
Te gaan 00:00:00
User {{ ballot.user.name }}
Priority {{ ballot.priority.name }}
{% for question in ballot.questions %}
{{ question.name }}
{% if question.description %}

{{ question.description }}

{% endif %}
{% if question.options.all() | count %}
    {% for option in question.options %}
  • {{ option.name }} {{ option.votes.all() | count }}
  • {% endfor %}
{% else %}
{% endif %} {% if not question.combined_approval_voting %}
{% endif %}
{% endfor %}
{% endblock %}