{% load crispy_forms_tags %} {% load automarkup %} {% if voting_round.decision %} {{ voting_round.decision }}

Fixed on: {{ voting_round.decision.fixed_on }}

{% if voting_round.decision.comments %}

Comments:

{% automarkup voting_round.decision.comments %} {% endif %} {% else %} {% with blocks=voting_round.decision_blocks %} {% if blocks %}

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

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