rDrama/files/templates/userpage/voted_comments.html

17 lines
423 B
HTML

{% extends "userpage/voted_posts.html" %}
{% block pagetitle %}Comments{% endblock %}
{% block listing %}
<div class="posts">
{% with comments=listing %}
{% include "comments.html" %}
{% endwith %}
{% if not listing %}
<div class="row no-gutters">
<div class="col">
{{macros.ghost_box('There are no comments here (yet).', '', 1)}}
</div>
</div>
{% endif %}
</div>
{% endblock %}