forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/userpage/voted_comments.html

19 lines
457 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-01-01 11:36:20 +00:00
<div class="row no-gutters">
<div class="col">
<div class="text-center py-6">
2022-10-29 00:55:49 +00:00
<h4 class="p-2">There are no comments here (yet).</h4>
2023-01-01 11:36:20 +00:00
</div>
</div>
2022-03-22 00:01:21 +00:00
</div>
{% endif %}
2022-03-22 00:01:21 +00:00
</div>
{% endblock %}