rDrama/files/templates/search_comments.html

28 lines
549 B
HTML
Raw Permalink Normal View History

2022-05-04 23:09:46 +00:00
{% extends "search.html" %}
2023-03-22 20:21:29 +00:00
{% block pagetype %}notifications{% endblock %}
2022-05-04 23:09:46 +00:00
{% block listing_template %}
<div class="posts p-3 p-md-0">
{% include "comments.html" %}
</div>
{% if error %}
2023-01-01 11:36:20 +00:00
<div class="row no-gutters">
<div class="col">
{{macros.ghost_box(error, '', 1)}}
2023-01-01 11:36:20 +00:00
</div>
2022-05-04 23:09:46 +00:00
</div>
2024-02-14 08:43:46 +00:00
{% elif not comments %}
<div class="row no-gutters">
<div class="col">
{{macros.ghost_box('No comments found!', '', 1)}}
</div>
</div>
2022-05-04 23:09:46 +00:00
{% endif %}
{% endblock %}
{% block listinglength %}
2023-10-29 12:51:00 +00:00
{{comments | length}}
2022-10-29 00:52:11 +00:00
{% endblock %}