{% extends "default.html" %} {% block pagetitle %}Poll Votes{% endblock %} {% block content %} {% if thing %}

{{thing.body_html | safe}} - {{ups | length}} {% if thing.exclusive == 2 %}bets{% else %}votes{% endif %}

{% for vote in ups %} {% endfor %}
# User User Truescore Vote Time
{{loop.index}} {% with user=vote.user %} {% include "user_in_table.html" %} {% endwith %} {{"{:,}".format(vote.user.truescore)}}
{% endif %} {% endblock %}