diff options
author | Zettat123 <zettat123@gmail.com> | 2024-02-20 17:11:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 09:11:01 +0000 |
commit | e940443b276fa4f30633902f025fd2adad1b22de (patch) | |
tree | 75ed83fe9fba1ffd9a13d14c30695c0a1ff324d8 /templates | |
parent | 2762921e73667b0c9d9f8623a87da119b25373d9 (diff) | |
download | gitea-e940443b276fa4f30633902f025fd2adad1b22de.tar.gz gitea-e940443b276fa4f30633902f025fd2adad1b22de.zip |
Do not show delete button when time tracker is disabled (#29257) (#29279)
Backport #29257
Fix #29233
The delete button of time logs won't be shown when the time tracker is
disabled.

Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
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"> |