{% 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 %}

Link: {{thing.parent.permalink}}

Author: @{{thing.parent.author.username}}

Author Created At:

Author Truescore: {{"{:,}".format(thing.parent.author.truescore)}}

Total voter truescore: {{total_ts}}

{% if total_patrons %}

Total patrons: {{total_patrons}}

{% 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 %}