2024-02-20 01:39:44 +00:00
|
|
|
{{if and .comment.Time (.ctxData.Repository.IsTimetrackerEnabled ctx)}} {{/* compatibility with time comments made before v1.14 */}}
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if (not .comment.Time.Deleted)}}
|
2023-03-02 17:44:06 +00:00
|
|
|
{{if (or .ctxData.IsAdmin (and .ctxData.IsSigned (eq .ctxData.SignedUserID .comment.PosterID)))}}
|
2024-03-04 03:33:20 +00:00
|
|
|
<span class="tw-float-right">
|
2021-02-19 10:52:11 +00:00
|
|
|
<div class="ui mini modal issue-delete-time-modal" data-id="{{.comment.Time.ID}}">
|
2023-06-14 18:17:58 +00:00
|
|
|
<form method="post" class="delete-time-form" action="{{.ctxData.RepoLink}}/issues/{{.ctxData.Issue.Index}}/times/{{.comment.TimeID}}/delete">
|
2023-03-02 17:44:06 +00:00
|
|
|
{{.ctxData.CsrfTokenHtml}}
|
2021-02-19 10:52:11 +00:00
|
|
|
</form>
|
2023-09-25 08:56:50 +00:00
|
|
|
<div class="header">{{ctx.Locale.Tr "repo.issues.del_time"}}</div>
|
2023-09-24 20:31:58 +00:00
|
|
|
{{template "base/modal_actions_confirm"}}
|
2021-02-19 10:52:11 +00:00
|
|
|
</div>
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui icon button compact mini issue-delete-time" data-id="{{.comment.Time.ID}}" data-tooltip-content="{{ctx.Locale.Tr "repo.issues.del_time"}}">
|
2021-03-22 04:04:19 +00:00
|
|
|
{{svg "octicon-trash"}}
|
2021-02-19 10:52:11 +00:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|