forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-31 11:51:15 -06:00
parent c07cbb3932
commit 86664b0da9
1 changed files with 17 additions and 14 deletions

View File

@ -1,19 +1,22 @@
{% extends "CHRISTMAS/admin/reported_posts.html" %}
{% block listing %}
<div class="col-span-full px-2.5 md:px-0">
{% with comments=listing %}
{% include "CHRISTMAS/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>
<div class="col-span-full px-2.5 md:px-0">
{% with comments=listing %}
{% include "CHRISTMAS/comments.html" %}
{% endwith %}
{% if not listing %}
<div class="flex flex-col items-center justify-center py-24 md:py-48">
<img loading="lazy" src="https://c.tenor.com/NhDy-AkelhQAAAAM/marsey-drama.gif" class="w-20 h-20 mb-4 rounded-md object-cover">
<h2 class="text-xl font-bold leading-normal font-heading">No reported comments</h2>
<p class="text-gray-500 text-sm">
When someone reports a comment, it will show up here.
</p>
<a href="/admin" class="mt-3 btn btn-gray">
Go to admin dashboard
</a>
</div>
{% endif %}
</div>
{% endblock %}