rDrama/files/templates/admin/removed_comments.html

27 lines
489 B
HTML
Raw Normal View History

2022-03-25 22:33:01 +00:00
{% extends "admin/removed_posts.html" %}
2021-12-17 17:55:11 +00:00
{% block title %}
2022-03-25 22:33:01 +00:00
<title>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 %}