rDrama/files/templates/userpage/voted_comments.html

17 lines
423 B
HTML
Raw Normal View History

{% 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>
{% endif %}
2022-03-22 00:01:21 +00:00
</div>
{% endblock %}