{% extends "CHRISTMAS/default.html" %} {% block title %} {{'SITE_NAME' | app_config}} {% endblock %} {% block pagetype %}page-voting{% endblock %} {% block subHeader %}

Votes

{% if thing %} Back to post {% else %} See which losers downvoted your quality content. {% endif %}
{% endblock %} {% block content %}
{% if thing %}
{{thing.author.profile_url}} avatar @{{thing.author.username}} {{thing.author.created_datetime}}

Upvotes {{ups | length}}

{% if ups %} {% for vote in ups %} {% endfor %} {% else %} {% endif %}
Members
{{ vote.user.username }} avatar
{{vote.user.username}} {% if vote.user.customtitle %}

{{vote.user.customtitle | safe}}

{% endif %}
No upvotes yet...

Downvotes {{downs | length}}

{% if downs %} {% for vote in downs %} {% endfor %} {% else %} {% endif %}
Members
{{ vote.user.username }} avatar
{{vote.user.username}} {% if vote.user.customtitle %}

{{vote.user.customtitle | safe}}

{% endif %}
No downvotes yet...
{% endif %} {% endblock %}