You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

orgs.go 758B

1234567891011121314151617181920212223242526
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package admin
  5. import (
  6. "github.com/gogits/gogs/models"
  7. "github.com/gogits/gogs/modules/base"
  8. "github.com/gogits/gogs/modules/context"
  9. "github.com/gogits/gogs/modules/setting"
  10. "github.com/gogits/gogs/routers"
  11. )
  12. const (
  13. ORGS base.TplName = "admin/org/list"
  14. )
  15. func Organizations(ctx *context.Context) {
  16. ctx.Data["Title"] = ctx.Tr("admin.organizations")
  17. ctx.Data["PageIsAdmin"] = true
  18. ctx.Data["PageIsAdminOrganizations"] = true
  19. routers.RenderUserSearch(ctx, models.USER_TYPE_ORGANIZATION, models.CountOrganizations, models.Organizations,
  20. setting.AdminOrgPagingNum, "id ASC", ORGS)
  21. }