2022-08-31 09:58:54 -06:00
|
|
|
{{if .comment.Time}} {{/* compatibility with time comments made before v1.14 */}}
|
|
|
|
{{if (not .comment.Time.Deleted)}}
|
|
|
|
{{if (or .ctx.IsAdmin (and .ctx.IsSigned (eq .ctx.SignedUserID .comment.PosterID)))}}
|
2021-02-19 03:52:11 -07:00
|
|
|
<span class="ui float right">
|
|
|
|
<div class="ui mini modal issue-delete-time-modal" data-id="{{.comment.Time.ID}}">
|
|
|
|
<form method="POST" class="delete-time-form" action="{{.ctx.RepoLink}}/issues/{{.ctx.Issue.Index}}/times/{{.comment.TimeID}}/delete">
|
|
|
|
{{.ctx.CsrfTokenHtml}}
|
|
|
|
</form>
|
2022-06-27 14:58:46 -06:00
|
|
|
<div class="header">{{.ctx.locale.Tr "repo.issues.del_time"}}</div>
|
2021-02-19 03:52:11 -07:00
|
|
|
<div class="actions">
|
2022-06-27 14:58:46 -06:00
|
|
|
<div class="ui red approve button">{{.ctx.locale.Tr "repo.issues.context.delete"}}</div>
|
|
|
|
<div class="ui cancel button">{{.ctx.locale.Tr "repo.issues.add_time_cancel"}}</div>
|
2021-02-19 03:52:11 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-27 14:58:46 -06:00
|
|
|
<button class="ui icon button compact mini issue-delete-time tooltip" data-id="{{.comment.Time.ID}}" data-content="{{.ctx.locale.Tr "repo.issues.del_time"}}" data-position="top right">
|
2021-03-21 22:04:19 -06:00
|
|
|
{{svg "octicon-trash"}}
|
2021-02-19 03:52:11 -07:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|