diff options
author | Zettat123 <zettat123@gmail.com> | 2024-02-20 09:39:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 01:39:44 +0000 |
commit | 8c21bc0d51ab22c0d05d8ce2ea8bc80d6f893800 (patch) | |
tree | d97c4544145f4790efa7d654cc0919a150393366 /templates | |
parent | e4e5d76932e9d5ba1f8c63213aefae1493012a81 (diff) | |
download | gitea-8c21bc0d51ab22c0d05d8ce2ea8bc80d6f893800.tar.gz gitea-8c21bc0d51ab22c0d05d8ce2ea8bc80d6f893800.zip |
Do not show delete button when time tracker is disabled (#29257)
Fix #29233
The delete button of time logs won't be shown when the time tracker is disabled.
![image](https://github.com/go-gitea/gitea/assets/15528715/5cc4e0c9-d2f9-4b8f-a2f5-fe202b94c191)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/issue/view_content/comments_delete_time.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/view_content/comments_delete_time.tmpl b/templates/repo/issue/view_content/comments_delete_time.tmpl index 7c01bb4228..95121b0dc7 100644 --- a/templates/repo/issue/view_content/comments_delete_time.tmpl +++ b/templates/repo/issue/view_content/comments_delete_time.tmpl @@ -1,4 +1,4 @@ -{{if .comment.Time}} {{/* compatibility with time comments made before v1.14 */}} +{{if and .comment.Time (.ctxData.Repository.IsTimetrackerEnabled ctx)}} {{/* compatibility with time comments made before v1.14 */}} {{if (not .comment.Time.Deleted)}} {{if (or .ctxData.IsAdmin (and .ctxData.IsSigned (eq .ctxData.SignedUserID .comment.PosterID)))}} <span class="gt-float-right"> |