rDrama/files/templates/poll_votes.html

44 lines
1.3 KiB
HTML

{% extends "default.html" %}
{% block pagetitle %}Poll Votes{% endblock %}
{% block content %}
{% if option %}
<h3 class="mt-5">{{option.body_html | safe}} - {{ups | length}} {% if option.exclusive == 2 %}bets{% else %}votes{% endif %}</h3>
<p><b>Link:</b> <a href="{{option.parent.permalink}}">{{option.parent.permalink}}</a></p>
<p><b>Author:</b> <a href="{{option.parent.author.url}}">@{{option.parent.author_name}}</a></p>
<p><b>Author Created At:</b> <span data-time="{{option.parent.author.created_utc}}"></span></p>
<p><b>Author Truescore:</b> {{option.parent.author.truescore|commas}}</p>
<p><b>Total voter truescore: </b>{{total_ts}}</p>
{% if total_patrons != None %}
<p><b>Total {{patron}}s: </b>{{total_patrons}} | ${{total_money}}</p>
{% endif %}
<div class="overflow-x-auto mt-5">
<table>
<thead>
<tr>
<th>#</th>
<th>User</th>
<th>User Truescore</th>
<th>Vote Time</th>
</tr>
</thead>
{% for vote in ups %}
<tr>
<td>{{loop.index}}</td>
<td>
{% with user=vote.user %}
{% include "user_in_table.html" %}
{% endwith %}
</td>
<td>{{vote.user.truescore|commas}}</td>
<td data-time="{{vote.created_utc}}"></td>
</tr>
{% endfor %}
</table>
</div>
{% endif %}
{% endblock %}