2022-05-04 23:09:46 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block pagetitle %}All Comments{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% block PseudoSubmitForm %}{% endblock %}
|
|
|
|
{% block sortnav %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-08-04 17:15:28 +00:00
|
|
|
<div class="d-flex justify-content-between align-items-center mt-1 mb-2">
|
2022-10-29 01:31:25 +00:00
|
|
|
<div class="d-flex px-2 align-items-center mt-4">
|
2024-03-03 01:53:02 +00:00
|
|
|
{{- macros.time_filter_buttons() -}}
|
2024-04-20 18:13:34 +00:00
|
|
|
{{- macros.sorting_buttons(COMMENT_SORTS, True) -}}
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row no-gutters {% if listing %}mt-md-3{% elif not listing %}my-md-3{% endif %}">
|
|
|
|
<div class="col-12 px-3">
|
2023-09-08 20:13:04 +00:00
|
|
|
<div class="posts">
|
2022-05-04 23:09:46 +00:00
|
|
|
{% include "comments.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block pagenav %}
|
2024-03-03 01:25:02 +00:00
|
|
|
{{macros.pagination()}}
|
2022-10-28 23:31:39 +00:00
|
|
|
{% endblock %}
|