mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 16:29:06 +01:00
2c3da59e27
By clicking the currently active "Open" or "Closed" filter button in the issue list, the user can toggle that filter off in order to see all issues regardless of state. The URL "state" parameter will be set to "all" and the "Open"/"Closed" button will not show as active.
16 lines
782 B
Go HTML Template
16 lines
782 B
Go HTML Template
<div class="small-menu-items ui compact tiny menu">
|
|
<a class="{{if eq .State "open"}}active {{end}}item" href="{{if eq .State "open"}}{{.AllStatesLink}}{{else}}{{.OpenLink}}{{end}}">
|
|
{{if .PageIsMilestones}}
|
|
{{svg "octicon-milestone" 16 "gt-mr-3"}}
|
|
{{else if .PageIsPullList}}
|
|
{{svg "octicon-git-pull-request" 16 "gt-mr-3"}}
|
|
{{else}}
|
|
{{svg "octicon-issue-opened" 16 "gt-mr-3"}}
|
|
{{end}}
|
|
{{ctx.Locale.PrettyNumber .OpenCount}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
|
</a>
|
|
<a class="{{if eq .State "closed"}}active {{end}}item" href="{{if eq .State "closed"}}{{.AllStatesLink}}{{else}}{{.ClosedLink}}{{end}}">
|
|
{{svg "octicon-check" 16 "gt-mr-3"}}
|
|
{{ctx.Locale.PrettyNumber .ClosedCount}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
|
</a>
|
|
</div>
|