{% load automarkup %}

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 }}
{% elif voting_round.decision.outcome == 'inconclusive' %}
{{ voting_round.decision.get_outcome_display }}
{% endif %} {% if voting_round.decision.comments %}

Decision comments

{% automarkup voting_round.decision.comments %} {% endif %}