Add New Thread button to threads list

This commit is contained in:
rubenwardy
2022-04-23 21:17:03 +01:00
parent f3ff44203c
commit c7d251b206
2 changed files with 19 additions and 13 deletions

View File

@@ -2,9 +2,15 @@
{% 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 %}