rDrama/files/templates/userpage/voted_comments.html

19 lines
465 B
HTML
Raw Normal View History

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