forked from gitea/gitea
parent
c36a1bc766
commit
1409b348c6
|
@ -69,6 +69,10 @@ func RenderUserSearch(ctx *context.Context, opts *user_model.SearchUserOptions,
|
||||||
orderBy = "`user`.updated_unix ASC"
|
orderBy = "`user`.updated_unix ASC"
|
||||||
case "reversealphabetically":
|
case "reversealphabetically":
|
||||||
orderBy = "`user`.name DESC"
|
orderBy = "`user`.name DESC"
|
||||||
|
case "lastlogin":
|
||||||
|
orderBy = "`user`.last_login_unix ASC"
|
||||||
|
case "reverselastlogin":
|
||||||
|
orderBy = "`user`.last_login_unix DESC"
|
||||||
case UserSearchDefaultSortType: // "alphabetically"
|
case UserSearchDefaultSortType: // "alphabetically"
|
||||||
default:
|
default:
|
||||||
orderBy = "`user`.name ASC"
|
orderBy = "`user`.name ASC"
|
||||||
|
|
|
@ -76,9 +76,9 @@
|
||||||
<th>{{.locale.Tr "admin.users.2fa"}}</th>
|
<th>{{.locale.Tr "admin.users.2fa"}}</th>
|
||||||
<th>{{.locale.Tr "admin.users.repos"}}</th>
|
<th>{{.locale.Tr "admin.users.repos"}}</th>
|
||||||
<th>{{.locale.Tr "admin.users.created"}}</th>
|
<th>{{.locale.Tr "admin.users.created"}}</th>
|
||||||
<th data-sortt-asc="leastupdate" data-sortt-desc="recentupdate">
|
<th data-sortt-asc="lastlogin" data-sortt-desc="reverselastlogin">
|
||||||
{{.locale.Tr "admin.users.last_login"}}
|
{{.locale.Tr "admin.users.last_login"}}
|
||||||
{{SortArrow "leastupdate" "recentupdate" $.SortType false}}
|
{{SortArrow "lastlogin" "reverselastlogin" $.SortType false}}
|
||||||
</th>
|
</th>
|
||||||
<th>{{.locale.Tr "admin.users.edit"}}</th>
|
<th>{{.locale.Tr "admin.users.edit"}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue