2016-12-24 20:12:26 +05:30
|
|
|
<div class="ui right floated secondary filter menu">
|
|
|
|
<!-- Sort -->
|
|
|
|
<div class="ui dropdown type jump item">
|
|
|
|
<span class="text">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.issues.filter_sort"}}
|
2020-11-01 03:45:11 +05:30
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2016-12-24 20:12:26 +05:30
|
|
|
</span>
|
|
|
|
<div class="menu">
|
2022-06-28 02:28:46 +05:30
|
|
|
<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 20:12:26 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-12 23:41:35 +05:30
|
|
|
<form class="ui form ignore-dirty" style="max-width: 90%;">
|
2016-03-12 02:03:12 +05:30
|
|
|
<div class="ui fluid action input">
|
2022-06-28 02:28:46 +05:30
|
|
|
<input name="q" value="{{.Keyword}}" placeholder="{{.locale.Tr "explore.search"}}..." autofocus>
|
|
|
|
<button class="ui primary button">{{.locale.Tr "explore.search"}}</button>
|
2016-03-12 02:03:12 +05:30
|
|
|
</div>
|
2016-07-23 22:38:22 +05:30
|
|
|
</form>
|