From fe58c66d9d29813606aa80451095750a20349927 Mon Sep 17 00:00:00 2001 From: flashwave Date: Thu, 3 Jan 2019 17:02:43 +0100 Subject: [PATCH] Show locked/archived notice at the end of the page too. --- templates/forum/topic.twig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/forum/topic.twig b/templates/forum/topic.twig index 499e17eb..dc7fe43e 100644 --- a/templates/forum/topic.twig +++ b/templates/forum/topic.twig @@ -17,12 +17,14 @@ }) %} {% set topic_tools = forum_topic_tools(topic_info, topic_pagination, can_reply) %} +{% set topic_notice = forum_topic_locked(topic_info.topic_locked, topic_info.topic_archived) %} {% block content %} {{ forum_header(topic_info.topic_title, topic_breadcrumbs, false, canonical_url) }} - {{ forum_topic_locked(topic_info.topic_locked, topic_info.topic_archived) }} + {{ topic_notice }} {{ topic_tools }} {{ forum_post_listing(topic_posts, current_user.user_id|default(0), topic_perms) }} {{ topic_tools }} + {{ topic_notice }} {{ forum_header('', topic_breadcrumbs) }} {% endblock %}