2023-05-03 23:58:59 +02:00
|
|
|
<div class="small-menu-items ui compact tiny menu">
|
2023-10-18 02:03:42 +02:00
|
|
|
<a class="{{if not .IsShowClosed}}active {{end}}item" href="{{.OpenLink}}">
|
|
|
|
{{if .PageIsMilestones}}
|
|
|
|
{{svg "octicon-milestone" 16 "gt-mr-3"}}
|
|
|
|
{{else if .PageIsPullList}}
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-git-pull-request" 16 "gt-mr-3"}}
|
2022-06-12 14:08:23 +02:00
|
|
|
{{else}}
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-issue-opened" 16 "gt-mr-3"}}
|
2022-06-12 14:08:23 +02:00
|
|
|
{{end}}
|
2023-10-18 02:03:42 +02:00
|
|
|
{{ctx.Locale.PrettyNumber .OpenCount}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
2020-11-29 16:52:11 +01:00
|
|
|
</a>
|
2023-10-18 02:03:42 +02:00
|
|
|
<a class="{{if .IsShowClosed}}active {{end}}item" href="{{.ClosedLink}}">
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-check" 16 "gt-mr-3"}}
|
2023-10-18 02:03:42 +02:00
|
|
|
{{ctx.Locale.PrettyNumber .ClosedCount}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
2020-11-29 16:52:11 +01:00
|
|
|
</a>
|
|
|
|
</div>
|