You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							1.1 KiB
						
					
					
				| {{template "base/head" .}}
 | |
| <div class="repository settings edit githook">
 | |
| 	{{template "repo/header" .}}
 | |
| 	{{template "repo/settings/navbar" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "base/alert" .}}
 | |
| 		<h4 class="ui top attached header">
 | |
| 			{{.i18n.Tr "repo.settings.githooks"}}
 | |
| 		</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			<p>{{.i18n.Tr "repo.settings.githook_edit_desc"}}</p>
 | |
| 			<form class="ui form" action="{{.Link}}" method="post">
 | |
| 				{{.CsrfTokenHtml}}
 | |
| 				{{with .Hook}}
 | |
| 					<div class="inline field">
 | |
| 						<label>{{$.i18n.Tr "repo.settings.githook_name"}}</label>
 | |
| 						<span>{{.Name}}</span>
 | |
| 					</div>
 | |
| 					<div class="field">
 | |
| 						<label for="content">{{$.i18n.Tr "repo.settings.githook_content"}}</label>
 | |
| 						<textarea id="content" name="content" rows="20" wrap="off" autofocus>{{if .IsActive}}{{.Content}}{{else}}{{.Sample}}{{end}}</textarea>
 | |
| 					</div>
 | |
| 
 | |
| 					<div class="inline field">
 | |
| 						<button class="ui green button">{{$.i18n.Tr "repo.settings.update_githook"}}</button>
 | |
| 					</div>
 | |
| 				{{end}}
 | |
| 			</form>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 | |
| 
 |