gitea/routers/admin/orgs.go

33 lines
877 B
Go
Raw Normal View History

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