mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 03:25:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			817 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			817 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings githooks")}}
 | |
| 	<div class="repo-setting-content">
 | |
| 		<h4 class="ui top attached header">
 | |
| 			{{ctx.Locale.Tr "repo.settings.githooks"}}
 | |
| 		</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			<div class="ui list flex-items-block">
 | |
| 				<div class="item"><span>{{ctx.Locale.Tr "repo.settings.githooks_desc"}}</span></div>
 | |
| 				{{range .Hooks}}
 | |
| 				<div class="item">
 | |
| 					<span class="text {{if .IsActive}}green{{else}}grey{{end}}">{{svg "octicon-dot-fill" 22}}</span>
 | |
| 					<span class="gt-ellipsis tw-flex-1">{{.Name}}</span>
 | |
| 					<a class="muted tw-p-2" href="{{$.RepoLink}}/settings/hooks/git/{{.Name|PathEscape}}">{{svg "octicon-pencil"}}</a>
 | |
| 				</div>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| {{template "repo/settings/layout_footer" .}}
 |