{% if should_show_new_round_tab_btn %}
+
{% endif %}
{% for voting_round in voting_rounds %}
{% if voting_round.voting_opens and voting_round.voting_deadline %}
{{ voting_round.voting_opens|date:"d M Y" }} - {{ voting_round.voting_deadline|date:"d M Y" }}
{% else %}
Unscheduled
{% endif %}
Round #{{ forloop.revcounter }}
{% if voting_round.is_scheduled %}
Scheduled
{% elif voting_round.is_open %}
Open
{% endif %}
{% endfor %}
{% if selected_round %}
{% include "colleges/_hx_voting_round_details.html" with voting_round=selected_round round_start_form=round_start_form new_voter_form=new_voter_form %}
{% endif %}