2014-08-29 18:20:43 +05:30
|
|
|
// 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 (
|
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2016-03-11 22:26:52 +05:30
|
|
|
"github.com/gogits/gogs/modules/context"
|
2015-09-25 23:24:52 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2016-03-12 02:03:12 +05:30
|
|
|
"github.com/gogits/gogs/routers"
|
2014-08-29 18:20:43 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ORGS base.TplName = "admin/org/list"
|
|
|
|
)
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
func Organizations(ctx *context.Context) {
|
2015-09-25 23:24:52 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 18:20:43 +05:30
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
routers.RenderUserSearch(ctx, &routers.UserSearchOptions{
|
|
|
|
Type: models.USER_TYPE_ORGANIZATION,
|
|
|
|
Counter: models.CountOrganizations,
|
|
|
|
Ranger: models.Organizations,
|
2016-07-23 21:53:54 +05:30
|
|
|
PageSize: setting.UI.Admin.OrgPagingNum,
|
2016-03-15 23:53:12 +05:30
|
|
|
OrderBy: "id ASC",
|
|
|
|
TplName: ORGS,
|
|
|
|
})
|
2014-08-29 18:20:43 +05:30
|
|
|
}
|