{% if "edadmin" in user_roles %}

Votes

{% endif %}

Decision

{% if voting_round.decision.outcome == 'elected' %}
{{ voting_round.decision.get_outcome_display }}
{% elif voting_round.decision.outcome == 'notelected' %}
{{ voting_round.decision.get_outcome_display }}
{% else %} {% if "edadmin" in user_roles %} {% if not voting_round.is_open %}
{% else %}

The voting round is still open. You many not draft a decision yet.

{% endif %} {% else %}

No decision has been formulated yet.

{% endif %} {% endif %}
{% include "colleges/_voting_results_box.html" with voting_round=voting_round %}