aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/labels/labels_selector_field.tmpl
blob: 00d852bba98b385acde34f3c6cb2887fcc0adb6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<div class="ui {{if or (not .HasIssuesOrPullsWritePermission) .Repository.IsArchived}}disabled{{end}} floating jump select-label dropdown">
	<a class="text gt-df gt-ac muted">
		<strong>{{.locale.Tr "repo.issues.new.labels"}}</strong>
		{{if and .HasIssuesOrPullsWritePermission (not .Repository.IsArchived)}}
			{{svg "octicon-gear" 16 "gt-ml-2"}}
		{{end}}
	</a>
	<div class="filter menu" {{if .Issue}}data-action="update" data-issue-id="{{$.Issue.ID}}" data-update-url="{{$.RepoLink}}/issues/labels"{{else}}data-id="#label_ids"{{end}}>
		<div class="header" style="text-transform: none;font-size:16px;">{{.locale.Tr "repo.issues.new.add_labels_title"}}</div>
		{{if or .Labels .OrgLabels}}
			<div class="ui icon search input">
				<i class="icon gt-df gt-ac gt-jc">{{svg "octicon-search" 16}}</i>
				<input type="text" placeholder="{{.locale.Tr "repo.issues.filter_labels"}}">
			</div>
		{{end}}
		<a class="no-select item" href="#">{{.locale.Tr "repo.issues.new.clear_labels"}}</a>
		{{if or .Labels .OrgLabels}}
			{{$previousExclusiveScope := "_no_scope"}}
			{{range .Labels}}
				{{$exclusiveScope := .ExclusiveScope}}
				{{if and (ne $previousExclusiveScope "_no_scope") (ne $previousExclusiveScope $exclusiveScope)}}
					<div class="ui divider"></div>
				{{end}}
				{{$previousExclusiveScope = $exclusiveScope}}
				<a class="{{if .IsChecked}}checked{{end}} item" href="#" data-id="{{.ID}}" data-id-selector="#label_{{.ID}}" data-scope="{{$exclusiveScope}}"><span class="octicon-check {{if not .IsChecked}}invisible{{end}}">{{if $exclusiveScope}}{{svg "octicon-dot-fill"}}{{else}}{{svg "octicon-check"}}{{end}}</span>&nbsp;&nbsp;{{RenderLabel $.Context .}}
				{{if .Description}}<br><small class="desc">{{.Description | RenderEmoji $.Context}}</small>{{end}}</a>
			{{end}}
			<div class="ui divider"></div>
			{{$previousExclusiveScope := "_no_scope"}}
			{{range .OrgLabels}}
				{{$exclusiveScope := .ExclusiveScope}}
				{{if and (ne $previousExclusiveScope "_no_scope") (ne $previousExclusiveScope $exclusiveScope)}}
					<div class="ui divider"></div>
				{{end}}
				{{$previousExclusiveScope = $exclusiveScope}}
				<a class="{{if .IsChecked}}checked{{end}} item" href="#" data-id="{{.ID}}" data-id-selector="#label_{{.ID}}" data-scope="{{$exclusiveScope}}"><span class="octicon-check {{if not .IsChecked}}invisible{{end}}">{{if $exclusiveScope}}{{svg "octicon-dot-fill"}}{{else}}{{svg "octicon-check"}}{{end}}</span>&nbsp;&nbsp;{{RenderLabel $.Context .}}
				{{if .Description}}<br><small class="desc">{{.Description | RenderEmoji $.Context}}</small>{{end}}</a>
			{{end}}
		{{else}}
			<div class="header" style="text-transform: none;font-size:14px;">{{.locale.Tr "repo.issues.new.no_items"}}</div>
		{{end}}
	</div>
</div>