{% load crispy_forms_tags %}

Eligible voters

{% if "edadmin" in user_roles and not voting_round.is_closed %}

Add new voter

{% crispy voter_add_form %}
Add senior fellows
{% endif %}
{% if voting_round.is_closed %}
{% include "colleges/_voting_results_box.html" with voting_round=voting_round %}
{% elif "edadmin" in user_roles %}

Start round

{% crispy round_start_form %}
{% endif %}