gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
{{if .comment.Time}} {{/* 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="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="{{.ctxData.RepoLink}}/issues/{{.ctxData.Issue.Index}}/times/{{.comment.TimeID}}/delete">
						{{.ctxData.CsrfTokenHtml}}
					</form>
					<div class="header">{{.ctxData.locale.Tr "repo.issues.del_time"}}</div>
					<div class="actions">
						<div class="ui red approve button">{{.ctxData.locale.Tr "repo.issues.context.delete"}}</div>
						<div class="ui cancel button">{{.ctxData.locale.Tr "repo.issues.add_time_cancel"}}</div>
					</div>
				</div>
				<button class="ui icon button compact mini issue-delete-time tooltip" data-id="{{.comment.Time.ID}}" data-content="{{.ctxData.locale.Tr "repo.issues.del_time"}}" data-position="top right">
					{{svg "octicon-trash"}}
				</button>
			</span>
		{{end}}
	{{end}}
{{end}}