aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/sidebar/project_list.tmpl
blob: ec79f8032f7b0b819ea06c542a97533a1b6acabb (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
44
45
46
47
48
49
50
51
52
53
{{if .IsProjectsEnabled}}
	<div class="divider"></div>

	<div class="ui {{if or (not .HasIssuesOrPullsWritePermission) .Repository.IsArchived}}disabled{{end}} floating jump select-project dropdown">
		<a class="text muted flex-text-block">
			<strong>{{ctx.Locale.Tr "repo.issues.new.projects"}}</strong>
			{{if and .HasIssuesOrPullsWritePermission (not .Repository.IsArchived)}}
				{{svg "octicon-gear" 16 "tw-ml-1"}}
			{{end}}
		</a>
		<div class="menu" data-action="update" data-issue-id="{{$.Issue.ID}}" data-update-url="{{$.RepoLink}}/issues/projects">
			{{if or .OpenProjects .ClosedProjects}}
			<div class="ui icon search input">
				<i class="icon">{{svg "octicon-search" 16}}</i>
				<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_projects"}}">
			</div>
			{{end}}
			<div class="no-select item">{{ctx.Locale.Tr "repo.issues.new.clear_projects"}}</div>
			{{if .OpenProjects}}
				<div class="divider"></div>
				<div class="header">
					{{ctx.Locale.Tr "repo.issues.new.open_projects"}}
				</div>
				{{range .OpenProjects}}
					<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link ctx}}">
						{{svg .IconName 18 "tw-mr-2"}}{{.Title}}
					</a>
				{{end}}
			{{end}}
			{{if .ClosedProjects}}
				<div class="divider"></div>
				<div class="header">
					{{ctx.Locale.Tr "repo.issues.new.closed_projects"}}
				</div>
				{{range .ClosedProjects}}
					<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link ctx}}">
						{{svg .IconName 18 "tw-mr-2"}}{{.Title}}
					</a>
				{{end}}
			{{end}}
		</div>
	</div>
	<div class="ui select-project list">
		<span class="no-select item {{if .Issue.Project}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_projects"}}</span>
		<div class="selected">
			{{if .Issue.Project}}
				<a class="item muted sidebar-item-link" href="{{.Issue.Project.Link ctx}}">
					{{svg .Issue.Project.IconName 18 "tw-mr-2"}}{{.Issue.Project.Title}}
				</a>
			{{end}}
		</div>
	</div>
{{end}}