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 847B

1234567891011121314151617181920212223242526272829303132
  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. "code.gitea.io/gitea/models"
  7. "code.gitea.io/gitea/modules/base"
  8. "code.gitea.io/gitea/modules/context"
  9. "code.gitea.io/gitea/modules/setting"
  10. "code.gitea.io/gitea/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, &routers.UserSearchOptions{
  20. Type: models.UserTypeOrganization,
  21. Counter: models.CountOrganizations,
  22. Ranger: models.Organizations,
  23. PageSize: setting.UI.Admin.OrgPagingNum,
  24. OrderBy: "id ASC",
  25. TplName: ORGS,
  26. })
  27. }