gitea/routers/admin/orgs.go

33 lines
860 B
Go
Raw Normal View History

2014-08-29 14:50:43 +02: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 (
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2016-03-11 17:56:52 +01:00
"github.com/gogits/gogs/modules/context"
2015-09-25 19:54:52 +02:00
"github.com/gogits/gogs/modules/setting"
"github.com/gogits/gogs/routers"
2014-08-29 14:50:43 +02:00
)
const (
ORGS base.TplName = "admin/org/list"
)
2016-03-11 17:56:52 +01:00
func Organizations(ctx *context.Context) {
2015-09-25 19:54:52 +02:00
ctx.Data["Title"] = ctx.Tr("admin.organizations")
2014-08-29 14:50:43 +02:00
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminOrganizations"] = true
routers.RenderUserSearch(ctx, &routers.UserSearchOptions{
Type: models.USER_TYPE_ORGANIZATION,
Counter: models.CountOrganizations,
Ranger: models.Organizations,
PageSize: setting.AdminOrgPagingNum,
OrderBy: "id ASC",
TplName: ORGS,
})
2014-08-29 14:50:43 +02:00
}