mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* Make sure fmt catches all templates Make's `wildcard` is not recursive so it missed many template files, fix that by using `find`. * Update Makefile
		
			
				
	
	
		
			22 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
{{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)))}}
 | 
						|
			<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>
 | 
						|
					<div class="header">{{.ctx.locale.Tr "repo.issues.del_time"}}</div>
 | 
						|
					<div class="actions">
 | 
						|
						<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>
 | 
						|
					</div>
 | 
						|
				</div>
 | 
						|
				<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">
 | 
						|
					{{svg "octicon-trash"}}
 | 
						|
				</button>
 | 
						|
			</span>
 | 
						|
		{{end}}
 | 
						|
	{{end}}
 | 
						|
{{end}}
 |