2024-09-22 22:32:42 +00:00
|
|
|
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') -%}
|
|
|
|
{% extends 'themes/' + theme() + '/base.html' -%}
|
|
|
|
{% else -%}
|
|
|
|
{% extends "base.html" -%}
|
|
|
|
{% endif -%} -%}
|
|
|
|
{% from 'bootstrap/form.html' import render_form -%}
|
|
|
|
|
|
|
|
{% block app_content -%}
|
|
|
|
<div class="row">
|
|
|
|
<h3>{{ _('Voting Activity for "%(post_title)s"', post_title=post_title) }}</h3>
|
|
|
|
<p><details open>
|
|
|
|
<summary>Upvoters</summary>
|
2024-12-27 19:51:10 +01:00
|
|
|
<ul>
|
2024-09-22 22:32:42 +00:00
|
|
|
{% for upvoter in upvoters -%}
|
2024-12-27 19:51:10 +01:00
|
|
|
<li>{{ render_username(upvoter) }}</li>
|
2024-09-22 22:32:42 +00:00
|
|
|
{% endfor -%}
|
2024-12-27 19:51:10 +01:00
|
|
|
</ul>
|
2024-09-22 22:32:42 +00:00
|
|
|
</details>
|
|
|
|
</p><p><hr></p>
|
|
|
|
<details open>
|
|
|
|
<summary>Downvoters</summary>
|
2024-12-27 19:51:10 +01:00
|
|
|
<ul>
|
2024-09-22 22:32:42 +00:00
|
|
|
{% for downvoter in downvoters -%}
|
2024-12-27 19:51:10 +01:00
|
|
|
<li>{{ render_username(downvoter) }}</li>
|
2024-09-22 22:32:42 +00:00
|
|
|
{% endfor -%}
|
2024-12-27 19:51:10 +01:00
|
|
|
</ul>
|
2024-09-22 22:32:42 +00:00
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
{% endblock -%}
|