summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/openclose.tmpl
blob: d93c7e01f50a143082c274869c91db97845a0a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="switch list-header-toggle">
	<a class="{{if eq .State "open"}}active {{end}}item" href="{{.OpenLink}}" data-test-name="open-issue-count">
		{{if .PageIsMilestones}}
			{{svg "octicon-milestone" 16 "tw-mr-2"}}
		{{else if .PageIsPullList}}
			{{svg "octicon-git-pull-request" 16 "tw-mr-2"}}
		{{else}}
			{{svg "octicon-issue-opened" 16 "tw-mr-2"}}
		{{end}}
		{{ctx.Locale.PrettyNumber .OpenCount}}&nbsp;{{ctx.Locale.Tr "repo.issues.open_title"}}
	</a>
	<a class="{{if eq .State "closed"}}active {{end}}item" href="{{.ClosedLink}}" data-test-name="closed-issue-count">
		{{svg "octicon-check" 16 "tw-mr-2"}}
		{{ctx.Locale.PrettyNumber .ClosedCount}}&nbsp;{{ctx.Locale.Tr "repo.issues.closed_title"}}
	</a>
	{{if not .PageIsMilestones}}
		<a class="{{if eq .State "all"}}active {{end}}item" href="{{.AllStatesLink}}" data-test-name="all-issue-count">
			{{svg "octicon-eye" 16 "tw-mr-2"}}
			{{ctx.Locale.PrettyNumber (.AllCount)}}&nbsp;{{ctx.Locale.Tr "repo.issues.all_title"}}
		</a>
	{{end}}
</div>