2016-12-24 15:42:26 +01:00
<div class="ui right floated secondary filter menu">
<!-- Sort -->
2017-11-01 02:16:07 +07:00
<div class="ui right dropdown type jump item">
2016-12-24 15:42:26 +01:00
<span class="text">
{{ .i18n .Tr "repo.issues.filter_sort" }}
2020-10-31 23:15:11 +01:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2016-12-24 15:42:26 +01:00
</span>
<div class="menu">
2017-10-05 14:02:43 +09:00
<a class=" {{ if eq .SortType "newest" }} active {{ end }} item" href=" {{ $ .Link }} ?sort=newest&q= {{ $ .Keyword }} &tab= {{ $ .TabName }} "> {{ .i18n .Tr "repo.issues.filter_sort.latest" }} </a>
2017-02-14 15:28:22 +08:00
<a class=" {{ if eq .SortType "oldest" }} active {{ end }} item" href=" {{ $ .Link }} ?sort=oldest&q= {{ $ .Keyword }} &tab= {{ $ .TabName }} "> {{ .i18n .Tr "repo.issues.filter_sort.oldest" }} </a>
<a class=" {{ if eq .SortType "alphabetically" }} active {{ end }} item" href=" {{ $ .Link }} ?sort=alphabetically&q= {{ $ .Keyword }} &tab= {{ $ .TabName }} "> {{ .i18n .Tr "repo.issues.label.filter_sort.alphabetically" }} </a>
<a class=" {{ if eq .SortType "reversealphabetically" }} active {{ end }} item" href=" {{ $ .Link }} ?sort=reversealphabetically&q= {{ $ .Keyword }} &tab= {{ $ .TabName }} "> {{ .i18n .Tr "repo.issues.label.filter_sort.reverse_alphabetically" }} </a>
<a class=" {{ if eq .SortType "recentupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?sort=recentupdate&q= {{ $ .Keyword }} &tab= {{ $ .TabName }} "> {{ .i18n .Tr "repo.issues.filter_sort.recentupdate" }} </a>
<a class=" {{ if eq .SortType "leastupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?sort=leastupdate&q= {{ $ .Keyword }} &tab= {{ $ .TabName }} "> {{ .i18n .Tr "repo.issues.filter_sort.leastupdate" }} </a>
2016-12-24 15:42:26 +01:00
</div>
</div>
</div>
2018-03-23 15:10:42 +01:00
<form class="ui form ignore-dirty" style="max-width: 90%">
2020-05-12 20:08:43 +01:00
<input type="hidden" name="tab" value=" {{ $ .TabName }} ">
2016-03-11 15:33:12 -05:00
<div class="ui fluid action input">
<input name="q" value=" {{ .Keyword }} " placeholder=" {{ .i18n .Tr "explore.search" }} ..." autofocus>
<button class="ui blue button"> {{ .i18n .Tr "explore.search" }} </button>
</div>
</form>
2016-07-24 01:08:22 +08:00
<div class="ui divider"></div>