mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	And fix a regression: https://github.com/go-gitea/gitea/pull/30053#discussion_r1874405470 Major changes: * rewrite without jquery * remove the "delete modal", using "link-action" is good enough * merge "new modal" and "edit modal"
		
			
				
	
	
		
			19 lines
		
	
	
		
			707 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			707 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div role="main" aria-label="{{.Title}}" class="page-content repository labels">
 | |
| 	{{template "repo/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		<div class="issue-navbar tw-mb-4">
 | |
| 			{{template "repo/issue/navbar" .}}
 | |
| 			{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
 | |
| 				<button class="ui small primary new-label button">{{ctx.Locale.Tr "repo.issues.new_label"}}</button>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 		{{template "base/alert" .}}
 | |
| 		{{template "repo/issue/labels/label_list" .}}
 | |
| 	</div>
 | |
| 	{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
 | |
| 		{{template "repo/issue/labels/label_edit_modal" .}}
 | |
| 	{{end}}
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |