26 lines
493 B
HTML
26 lines
493 B
HTML
{% extends "admin/reported_posts.html" %}
|
|
|
|
{% block title %}
|
|
<title>Reported Comments</title>
|
|
{% 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-7">
|
|
<h4 class="p-2">There are no comments here (yet).</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|