{% if not round.is_unscheduled %}
Voting opens
{% if round.is_open %} {{ round.voting_opens|timesince }} ago {% else %} {% endif %}
Voting deadline
{% if round.is_open %} In {{ round.voting_deadline|timeuntil }} {% else %} {% endif %}
{% else %}
{% endif %}
Voting status
{% if round.is_unscheduled %} Unscheduled {% elif round.is_open %} Open {% elif round.is_scheduled %} Scheduled {% elif round.is_closed %} Closed {% endif %}
{% 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 %}