2016-12-24 07:42:26 -07:00
|
|
|
<div class="ui right floated secondary filter menu">
|
|
|
|
<!-- Sort -->
|
|
|
|
<div class="ui dropdown type jump item">
|
|
|
|
<span class="text">
|
2022-06-27 14:58:46 -06:00
|
|
|
{{.locale.Tr "repo.issues.filter_sort"}}
|
2020-10-31 16:15:11 -06:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2016-12-24 07:42:26 -07:00
|
|
|
</span>
|
|
|
|
<div class="menu">
|
2022-12-09 06:34:51 -07:00
|
|
|
<a class="{{if or (eq .SortType "oldest") (not .SortType)}}active {{end}}item" href="{{$.Link}}?sort=oldest&q={{$.Keyword}}">{{.locale.Tr "repo.issues.filter_sort.oldest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "newest"}}active {{end}}item" href="{{$.Link}}?sort=newest&q={{$.Keyword}}">{{.locale.Tr "repo.issues.filter_sort.latest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "alphabetically"}}active {{end}}item" href="{{$.Link}}?sort=alphabetically&q={{$.Keyword}}">{{.locale.Tr "repo.issues.label.filter_sort.alphabetically"}}</a>
|
|
|
|
<a class="{{if eq .SortType "reversealphabetically"}}active {{end}}item" href="{{$.Link}}?sort=reversealphabetically&q={{$.Keyword}}">{{.locale.Tr "repo.issues.label.filter_sort.reverse_alphabetically"}}</a>
|
|
|
|
<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="{{$.Link}}?sort=recentupdate&q={{$.Keyword}}">{{.locale.Tr "repo.issues.filter_sort.recentupdate"}}</a>
|
|
|
|
<a class="{{if eq .SortType "leastupdate"}}active {{end}}item" href="{{$.Link}}?sort=leastupdate&q={{$.Keyword}}">{{.locale.Tr "repo.issues.filter_sort.leastupdate"}}</a>
|
2016-12-24 07:42:26 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-12 12:11:35 -06:00
|
|
|
<form class="ui form ignore-dirty" style="max-width: 90%;">
|
2016-03-11 13:33:12 -07:00
|
|
|
<div class="ui fluid action input">
|
2022-06-27 14:58:46 -06:00
|
|
|
<input name="q" value="{{.Keyword}}" placeholder="{{.locale.Tr "explore.search"}}..." autofocus>
|
|
|
|
<button class="ui primary button">{{.locale.Tr "explore.search"}}</button>
|
2016-03-11 13:33:12 -07:00
|
|
|
</div>
|
2016-07-23 11:08:22 -06:00
|
|
|
</form>
|