Summary
- Eligible: {{ voting_round.eligible_to_vote.count }}
- Agree: {{ voting_round.votes.agree.count }}
- Abstain: {{ voting_round.votes.abstain.count }}
- Disagree: {{ voting_round.votes.disagree.count }}
{% if not is_ed_admin %}
- Veto: {{ voting_round.nomination.vetoes.count }}
{% else %}
{% for vetoer in voting_round.nomination.vetoes.all %}
- Vetoed by {{ vetoer }}
{% endfor %}
{% endif %}