{% extends 'constellation_base/base.html' %} {% load get_item %} {% block title %}Results{% endblock%} {% block content %} {% load guardian_tags %}

{{ poll.title }}

{% get_obj_perms request.user for poll as "poll_perms" %} {% if poll.results_visible or "poll_owned_by" in poll_perms %} {% if poll.mechanism == -1 %}

This poll does not have a summation mechanism defined, results cannot be tabulated!

{% else %}

This poll is summed using the {{ poll.MECHANISMS|get_item:poll.mechanism|get_item:"name" }} mechanism. A total of {{ num_votes }} votes have been cast. The results are as follows:

Final Results:

    {% if results.winners != None %} {% for winner in results.winners %}
  • done {{ winner }}
  • {% endfor %} {% else %}
  • {{ results.winner }}
  • {% endif %}
{% endif %} {% if results.rounds != None %}
    {% for round in results.rounds %} {% if round.winners != None or round.winner != None %}
  1. Round Winner(s):
    • {% for winner in round.winners %}
    • {{ winner }}
    • {% endfor %} {% if round.winner %}
    • {{ round.winner }}
    • {% endif %}
    {% elif round.losers != None or round.loser != None %}
  2. Round Loser(s):
    • {% for loser in round.losers %}
    • {{ loser }}
    • {% endfor %} {% if round.loser %}
    • {{ round.loser }}
    • {% endif %}
    {% endif %} {% endfor %}
{% endif %} {% else %}

Thank you for voting! This poll has private results which you do not have permission to view.

{% endif %}
{% endblock %}