forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/admin/reported_comments.html

25 lines
434 B
HTML
Raw Normal View History

2021-09-12 06:41:19 +00:00
{% extends "admin/reported_posts.html" %}
2021-07-21 01:12:26 +00:00
{% block listing %}
2021-09-12 06:51:02 +00:00
<div class="posts">
2021-07-21 01:12:26 +00:00
{% with comments=listing %}
{% include "comments.html" %}
{% endwith %}
{% if not listing %}
2021-08-15 01:03:29 +00:00
<div class="row no-gutters">
2021-07-21 01:12:26 +00:00
<div class="col">
<div class="text-center py-7">
<div class="h4 p-2">There are no comments here (yet).</div>
2021-08-15 01:03:29 +00:00
</div>
2021-07-21 01:12:26 +00:00
</div>
</div>
{% endif %}
</div>
{% endblock %}