rDrama/files/templates/admin/reported_comments.html

19 lines
467 B
HTML

{% extends "admin/reported_posts.html" %}
{% block pagetitle %}Reported 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">
<div class="text-center py-6">
<h4 class="p-2">There are no comments here (yet).</h4>
</div>
</div>
</div>
{% endif %}
</div>
{% endblock %}