2022-03-25 22:33:01 +00:00
|
|
|
{% extends "admin/removed_posts.html" %}
|
2022-11-19 22:20:38 +00:00
|
|
|
{% block pagetitle %}Removed Comments{% 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">
|
2022-10-29 00:55:49 +00:00
|
|
|
<h4 class="p-2">There are no comments here (yet).</h4>
|
2021-12-17 17:55:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|