{% extends "default.html" %} {% block title %} {{SITE_NAME}} {% endblock %} {% block content %} {% if thing %}

Info

{{thing.permalink}}

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

Author Created At:

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

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.truecoins)}}

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.truecoins)}}
{% endif %} {% endblock %}