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

Info

{{thing.permalink}}

Author: @{{thing.author_name}}

Author Created At:

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

Upvotes: {{ups | length}}

Downvotes: {{downs | length}}

Upvotes

{% 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)}} 1599343262 %}data-time="{{vote.created_utc}}"{% endif %}>

Downvotes

{% for vote in downs %} {% endfor %}
# User User Truescore Vote Time
{{loop.index}} {% with user=vote.user %} {% include "user_in_table.html" %} {% endwith %} {{"{:,}".format(vote.user.truescore)}} 1599343262 %}data-time="{{vote.created_utc}}"{% endif %}>
{% endif %} {% endblock %}