25 lines
439 B
HTML
25 lines
439 B
HTML
{% extends "admin/flagged_posts.html" %}
|
|
|
|
|
|
|
|
{% block listing %}
|
|
|
|
|
|
<div class="posts p-3">
|
|
{% with comments=listing %}
|
|
{% include "comments.html" %}
|
|
{% endwith %}
|
|
{% if not listing %}
|
|
<div class="row no-gutters">
|
|
<div class="col">
|
|
<div class="text-center py-7">
|
|
<div class="h4 p-2">There are no comments here (yet).</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|