Sort on repo size in admin panel (#1654)

* fix #1653 sort on repo size

* fix minor mistake in en-us locale
This commit is contained in:
Jorrit Klein Bramel 2017-05-02 10:34:28 +02:00 committed by Bo-Yi Wu
parent 3792867955
commit 87efc8c6d4
3 changed files with 8 additions and 0 deletions

View file

@ -94,6 +94,10 @@ func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) {
orderBy = "name DESC"
case "alphabetically":
orderBy = "name ASC"
case "reversesize":
orderBy = "size DESC"
case "size":
orderBy = "size ASC"
default:
orderBy = "created_unix DESC"
}