summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/labels.tmpl
blob: a34ce1bfbb51b99cc264625caf28f3def23a24b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content repository labels">
	{{template "repo/header" .}}
	<div class="ui container">
		<div class="navbar gt-mb-4">
			{{template "repo/issue/navbar" .}}
			{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
				<button class="ui small green new-label button">{{.locale.Tr "repo.issues.new_label"}}</button>
			{{end}}
		</div>
		{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
			{{template "repo/issue/labels/label_new" .}}
		{{end}}
		{{template "base/alert" .}}
		{{template "repo/issue/labels/label_list" .}}
	</div>
</div>

{{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}}
	{{template "repo/issue/labels/edit_delete_label" .}}
{{end}}
{{template "base/footer" .}}