2022-11-09 07:34:18 +00:00
|
|
|
{% extends "userpage/voted_posts.html" %}
|
2023-02-06 05:42:11 +00:00
|
|
|
{% block pagetitle %}Comments{% endblock %}
|
2022-03-22 00:01:21 +00:00
|
|
|
{% block listing %}
|
|
|
|
<div class="posts">
|
|
|
|
{% with comments=listing %}
|
|
|
|
{% include "comments.html" %}
|
|
|
|
{% endwith %}
|
|
|
|
{% if not listing %}
|
2023-10-29 00:07:53 +00:00
|
|
|
<div class="row no-gutters">
|
|
|
|
<div class="col">
|
2024-02-14 08:43:46 +00:00
|
|
|
{{macros.ghost_box('There are no comments here (yet).', '', 1)}}
|
2023-01-01 11:36:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-27 00:59:16 +00:00
|
|
|
{% endif %}
|
2022-03-22 00:01:21 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|