2022-03-25 22:33:01 +00:00
|
|
|
{% extends "admin/removed_posts.html" %}
|
2021-12-17 17:55:11 +00:00
|
|
|
|
|
|
|
{% block title %}
|
2022-05-30 02:22:47 +00:00
|
|
|
<title>Removed Comments</title>
|
2021-12-17 17:55:11 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2022-03-25 22:33:01 +00:00
|
|
|
{% block listing %}
|
2021-12-17 17:55:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
<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">
|
|
|
|
<div class="h4 p-2">There are no comments here (yet).</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|