{% load crispy_forms_tags %} {% load automarkup %}
{% if voting_round.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 }}
{% endif %} {% if voting_round.decision.comments %}
Decision comments

{{ voting_round.decision.comments }}

{% endif %} {% else %} {% if "edadmin" in user_roles %} {% if not voting_round.is_open %} {% with blocks=voting_round.decision_blocks %} {% if blocks %}

The decision cannot be fixed at this moment: {{ blocks }}

{% else %}
{% crispy decision_form %}
{% endif %} {% endwith %} {% else %}

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

{% endif %} {% else %}

No decision has been formulated yet.

{% endif %} {% endif %}