contentdb/app/templates/threads/list.html

21 lines
446 B
HTML
Raw Normal View History

2018-06-11 23:49:25 +02:00
{% extends "base.html" %}
{% block title %}
2022-02-17 04:46:21 +01:00
{{ _("Discussion") }}
2018-06-11 23:49:25 +02:00
{% endblock %}
{% block content %}
2022-01-08 00:27:00 +01:00
<h1>{{ self.title() }}</h1>
2018-06-11 23:49:25 +02:00
2020-12-22 13:22:52 +01:00
{% from "macros/pagination.html" import render_pagination %}
2018-06-11 23:49:25 +02:00
{% from "macros/threads.html" import render_threadlist %}
2020-12-22 13:22:52 +01:00
{{ render_pagination(pagination, url_set_query) }}
2020-07-10 20:46:14 +02:00
<div class="list-group">
{{ render_threadlist(threads) }}
</div>
2020-12-22 13:22:52 +01:00
{{ render_pagination(pagination, url_set_query) }}
2018-06-11 23:49:25 +02:00
{% endblock %}