diff options
author | Bwko <bouwko@gmail.com> | 2016-12-24 15:42:26 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2016-12-24 22:42:26 +0800 |
commit | fa3abc22c06843bb27089e8c0f7aebf0f5d83fcc (patch) | |
tree | f7763df24980f419698ea75f4cd2d080784a62d2 /templates/admin/base/search.tmpl | |
parent | c1e92eeb72fe92cc30c80985e5e2b970f4735067 (diff) | |
download | gitea-fa3abc22c06843bb27089e8c0f7aebf0f5d83fcc.tar.gz gitea-fa3abc22c06843bb27089e8c0f7aebf0f5d83fcc.zip |
Added sorting to organizations, repos & users page (#222)
Diffstat (limited to 'templates/admin/base/search.tmpl')
-rw-r--r-- | templates/admin/base/search.tmpl | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/templates/admin/base/search.tmpl b/templates/admin/base/search.tmpl index 22634354b8..9e450ee367 100644 --- a/templates/admin/base/search.tmpl +++ b/templates/admin/base/search.tmpl @@ -1,4 +1,21 @@ -<form class="ui form"> +<div class="ui right floated secondary filter menu"> +<!-- Sort --> + <div class="ui dropdown type jump item"> + <span class="text"> + {{.i18n.Tr "repo.issues.filter_sort"}} + <i class="dropdown icon"></i> + </span> + <div class="menu"> + <a class="{{if or (eq .SortType "oldest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?sort=oldest&q={{$.Keyword}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> + <a class="{{if eq .SortType "newest"}}active{{end}} item" href="{{$.Link}}?sort=newest&q={{$.Keyword}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> + <a class="{{if eq .SortType "alphabetically"}}active{{end}} item" href="{{$.Link}}?sort=alphabetically&q={{$.Keyword}}">{{.i18n.Tr "repo.issues.label.filter_sort.alphabetically"}}</a> + <a class="{{if eq .SortType "reversealphabetically"}}active{{end}} item" href="{{$.Link}}?sort=reversealphabetically&q={{$.Keyword}}">{{.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}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> + <a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?sort=leastupdate&q={{$.Keyword}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> + </div> + </div> +</div> +<form class="ui form" style="max-width: 90%"> <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> |