{% extends "base.html" %} {% block title %} {{ _("Threads") }} {% if package %} - {{ package.title }} {% endif %} {% endblock %} {% block content %} {% if current_user.is_authenticated and package %} {{ _("New Thread") }} {% endif %}

{{ self.title() }}

{% from "macros/pagination.html" import render_pagination %} {% from "macros/threads.html" import render_threadlist %} {{ render_pagination(pagination, url_set_query) }}
{{ render_threadlist(threads) }}
{{ render_pagination(pagination, url_set_query) }} {% endblock %}