contentdb/app/templates/threads/list.html
2022-04-23 21:17:03 +01:00

27 lines
694 B
HTML

{% extends "base.html" %}
{% block title %}
{{ _("Threads") }}
{% if package %}
- {{ package.title }}
{% endif %}
{% endblock %}
{% block content %}
{% if current_user.is_authenticated and package %}
<a href="{{ url_for('threads.new', pid=package and package.id) }}" class="btn btn-primary float-right">{{ _("New Thread") }}</a>
{% endif %}
<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 %}