contentdb/app/templates/threads/list.html

21 lines
446 B
HTML

{% extends "base.html" %}
{% block title %}
{{ _("Discussion") }}
{% endblock %}
{% block content %}
<h1>{{ self.title() }}</h1>
{% from "macros/pagination.html" import render_pagination %}
{% from "macros/threads.html" import render_threadlist %}
{{ render_pagination(pagination, url_set_query) }}
<div class="list-group">
{{ render_threadlist(threads) }}
</div>
{{ render_pagination(pagination, url_set_query) }}
{% endblock %}