{% if round.is_closed %}
Decision
{% if not round.decision %}
Pending
{% elif round.decision.outcome == "elected" %}
{{ round.decision.get_outcome_display }}
{% elif round.decision.outcome == "notelected" %}
{{ round.decision.get_outcome_display }}
{% elif round.decision.outcome == "inconclusive" %}
{{ round.decision.get_outcome_display }}
{% endif %}
{% else %}
Voted / Total
{% if round.eligible_to_vote.count > 0 %}
{{ round.votes.count }} / {{ round.eligible_to_vote.count }}
{% else %}
None
{% endif %}
{% endif %}