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

{% if v.admin_level and (total_ups and patrons_ups) %}

Total Truescore: {{total_ups}}

Total Paypigs: {{patrons_ups}}

{% endif %}

Upvotes

{% for vote in ups %} {% endfor %}
User User Truescore Vote Time
{% 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
{% with user=vote.user %} {% include "user_in_table.html" %} {% endwith %} {{"{:,}".format(vote.user.truecoins)}}
{% endif %} {% endblock %}