2014-08-29 08:50:43 -04:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/routers"
|
2014-08-29 08:50:43 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-20 22:21:24 -05:00
|
|
|
tplOrgs base.TplName = "admin/org/list"
|
2014-08-29 08:50:43 -04:00
|
|
|
)
|
|
|
|
|
2016-11-20 22:21:24 -05:00
|
|
|
// Organizations show all the organizations
|
2016-03-11 11:56:52 -05:00
|
|
|
func Organizations(ctx *context.Context) {
|
2015-09-25 13:54:52 -04:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 08:50:43 -04:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2016-03-15 14:23:12 -04:00
|
|
|
routers.RenderUserSearch(ctx, &routers.UserSearchOptions{
|
2016-11-07 11:53:22 -05:00
|
|
|
Type: models.UserTypeOrganization,
|
2016-03-15 14:23:12 -04:00
|
|
|
Counter: models.CountOrganizations,
|
|
|
|
Ranger: models.Organizations,
|
2016-07-23 12:23:54 -04:00
|
|
|
PageSize: setting.UI.Admin.OrgPagingNum,
|
2016-11-20 22:21:24 -05:00
|
|
|
TplName: tplOrgs,
|
2016-03-15 14:23:12 -04:00
|
|
|
})
|
2014-08-29 08:50:43 -04:00
|
|
|
}
|