From 35c967653b61e54a07e27619cfcf5ac78810ffc4 Mon Sep 17 00:00:00 2001 From: Otto Richter <git@otto.splvs.net> Date: Wed, 24 Apr 2024 23:03:47 +0200 Subject: [PATCH] Split watching --- templates/repo/issue/view_content/sidebar.tmpl | 8 ++------ templates/repo/issue/view_content/sidebar/watch.tmpl | 6 ++++++ 2 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 templates/repo/issue/view_content/sidebar/watch.tmpl diff --git a/templates/repo/issue/view_content/sidebar.tmpl b/templates/repo/issue/view_content/sidebar.tmpl index 5972f3dbcf..c3e8e24d03 100644 --- a/templates/repo/issue/view_content/sidebar.tmpl +++ b/templates/repo/issue/view_content/sidebar.tmpl @@ -27,13 +27,9 @@ {{if and $.IssueWatch (not .Repository.IsArchived)}} <div class="divider"></div> - <div class="ui watching"> - <span class="text"><strong>{{ctx.Locale.Tr "notification.notifications"}}</strong></span> - <div class="tw-mt-2"> - {{template "repo/issue/view_content/watching" .}} - </div> - </div> + {{template "repo/issue/view_content/sidebar/watch" .}} {{end}} + {{if .Repository.IsTimetrackerEnabled $.Context}} {{if and .CanUseTimetracker (not .Repository.IsArchived)}} <div class="divider"></div> diff --git a/templates/repo/issue/view_content/sidebar/watch.tmpl b/templates/repo/issue/view_content/sidebar/watch.tmpl new file mode 100644 index 0000000000..852738a706 --- /dev/null +++ b/templates/repo/issue/view_content/sidebar/watch.tmpl @@ -0,0 +1,6 @@ +<div class="ui watching"> + <span class="text"><strong>{{ctx.Locale.Tr "notification.notifications"}}</strong></span> + <div class="tw-mt-2"> + {{template "repo/issue/view_content/watching" .}} + </div> +</div>