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

Info

{{obj.permalink}}

Author: @{{obj.author.username}}

Author Created At:

Author Truescore: {{obj.author.truescore|commas}}

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