1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-02 16:15:47 +00:00
gitea/routers/admin/orgs.go

27 lines
758 B
Go
Raw Normal View History

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