diff options
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/emails/list.tmpl | 10 | ||||
-rw-r--r-- | templates/admin/org/list.tmpl | 12 | ||||
-rw-r--r-- | templates/admin/repo/list.tmpl | 22 | ||||
-rw-r--r-- | templates/admin/user/list.tmpl | 12 |
4 files changed, 43 insertions, 13 deletions
diff --git a/templates/admin/emails/list.tmpl b/templates/admin/emails/list.tmpl index 64b7603e2e..39a200942d 100644 --- a/templates/admin/emails/list.tmpl +++ b/templates/admin/emails/list.tmpl @@ -33,9 +33,15 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>{{.i18n.Tr "admin.users.name"}}</th> + <th data-sortt-asc="username" data-sortt-desc="reverseusername"> + {{.i18n.Tr "admin.users.name"}} + {{SortArrow "username" "reverseusername" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.full_name"}}</th> - <th>{{.i18n.Tr "email"}}</th> + <th data-sortt-asc="email" data-sortt-desc="reverseemail" data-sortt-default="true"> + {{.i18n.Tr "email"}} + {{SortArrow "email" "reverseemail" $.SortType true}} + </th> <th>{{.i18n.Tr "admin.emails.primary"}}</th> <th>{{.i18n.Tr "admin.emails.activated"}}</th> </tr> diff --git a/templates/admin/org/list.tmpl b/templates/admin/org/list.tmpl index fc512f2ad9..4f6bc50342 100644 --- a/templates/admin/org/list.tmpl +++ b/templates/admin/org/list.tmpl @@ -16,12 +16,18 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>ID</th> - <th>{{.i18n.Tr "admin.orgs.name"}}</th> + <th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th> + <th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically" data-sortt-default="true"> + {{.i18n.Tr "admin.orgs.name"}} + {{SortArrow "alphabetically" "reversealphabetically" $.SortType true}} + </th> <th>{{.i18n.Tr "admin.orgs.teams"}}</th> <th>{{.i18n.Tr "admin.orgs.members"}}</th> <th>{{.i18n.Tr "admin.users.repos"}}</th> - <th>{{.i18n.Tr "admin.users.created"}}</th> + <th data-sortt-asc="recentupdate" data-sortt-desc="leastupdate"> + {{.i18n.Tr "admin.users.created"}} + {{SortArrow "recentupdate" "leastupdate" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.edit"}}</th> </tr> </thead> diff --git a/templates/admin/repo/list.tmpl b/templates/admin/repo/list.tmpl index f946b8a461..b9b8865382 100644 --- a/templates/admin/repo/list.tmpl +++ b/templates/admin/repo/list.tmpl @@ -13,15 +13,27 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>ID</th> + <th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th> <th>{{.i18n.Tr "admin.repos.owner"}}</th> - <th>{{.i18n.Tr "admin.repos.name"}}</th> + <th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically"> + {{.i18n.Tr "admin.repos.name"}} + {{SortArrow "alphabetically" "reversealphabetically" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.repos.private"}}</th> <th>{{.i18n.Tr "admin.repos.watches"}}</th> - <th>{{.i18n.Tr "admin.repos.stars"}}</th> - <th>{{.i18n.Tr "admin.repos.forks"}}</th> + <th data-sortt-asc="moststars" data-sortt-desc="feweststars"> + {{.i18n.Tr "admin.repos.stars"}} + {{SortArrow "moststars" "feweststars" $.SortType false}} + </th> + <th data-sortt-asc="mostforks" data-sortt-desc="fewestforks"> + {{.i18n.Tr "admin.repos.forks"}} + {{SortArrow "mostforks" "fewestforks" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.repos.issues"}}</th> - <th>{{.i18n.Tr "admin.repos.size"}}</th> + <th data-sortt-asc="size" data-sortt-desc="reversesize"> + {{.i18n.Tr "admin.repos.size"}} + {{SortArrow "size" "reversesize" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.created"}}</th> <th>{{.i18n.Tr "admin.notices.op"}}</th> </tr> diff --git a/templates/admin/user/list.tmpl b/templates/admin/user/list.tmpl index 72b7ccd191..3442d04195 100644 --- a/templates/admin/user/list.tmpl +++ b/templates/admin/user/list.tmpl @@ -16,15 +16,21 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>ID</th> - <th>{{.i18n.Tr "admin.users.name"}}</th> + <th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" .SortType false}}</th> + <th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically" data-sortt-default="true"> + {{.i18n.Tr "admin.users.name"}} + {{SortArrow "alphabetically" "reversealphabetically" $.SortType true}} + </th> <th>{{.i18n.Tr "email"}}</th> <th>{{.i18n.Tr "admin.users.activated"}}</th> <th>{{.i18n.Tr "admin.users.admin"}}</th> <th>{{.i18n.Tr "admin.users.restricted"}}</th> <th>{{.i18n.Tr "admin.users.repos"}}</th> <th>{{.i18n.Tr "admin.users.created"}}</th> - <th>{{.i18n.Tr "admin.users.last_login"}}</th> + <th data-sortt-asc="recentupdate" data-sortt-desc="leastupdate"> + {{.i18n.Tr "admin.users.last_login"}} + {{SortArrow "recentupdate" "leastupdate" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.edit"}}</th> </tr> </thead> |