2020-11-29 16:52:11 +01:00
|
|
|
<div class="ui compact tiny menu">
|
2022-08-08 22:03:58 +02:00
|
|
|
<a class="{{if not .IsShowClosed}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}&poster={{.PosterID}}">
|
2022-06-12 14:08:23 +02:00
|
|
|
{{if .PageIsPullList}}
|
|
|
|
{{svg "octicon-git-pull-request" 16 "mr-3"}}
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-issue-opened" 16 "mr-3"}}
|
|
|
|
{{end}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{JsPrettyNumber .IssueStats.OpenCount}} {{.locale.Tr "repo.issues.open_title"}}
|
2020-11-29 16:52:11 +01:00
|
|
|
</a>
|
2022-08-08 22:03:58 +02:00
|
|
|
<a class="{{if .IsShowClosed}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}&poster={{.PosterID}}">
|
2022-06-12 14:08:23 +02:00
|
|
|
{{svg "octicon-check" 16 "mr-3"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{JsPrettyNumber .IssueStats.ClosedCount}} {{.locale.Tr "repo.issues.closed_title"}}
|
2020-11-29 16:52:11 +01:00
|
|
|
</a>
|
|
|
|
</div>
|