rDrama/files/templates/search_comments.html

22 lines
398 B
HTML
Raw 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>
{% endif %}
{% endblock %}
{% block listinglength %}
{{comments | length}}
2022-10-29 00:52:11 +00:00
{% endblock %}