123456789101112131415161718192021222324252627282930313233343536 |
- // Copyright 2015 - Present, The Gogs Authors. All rights reserved.
- // Copyright 2018 - Present, Gitote. All rights reserved.
- //
- // This source code is licensed under the MIT license found in the
- // LICENSE file in the root directory of this source tree.
- package admin
- import (
- "gitote/gitote/models"
- "gitote/gitote/pkg/context"
- "gitote/gitote/pkg/setting"
- "gitote/gitote/routes"
- )
- const (
- // OrgsTPL list page template
- OrgsTPL = "admin/org/list"
- )
- // Organizations shows organizations page
- func Organizations(c *context.Context) {
- c.Data["Title"] = "Organizations"
- c.Data["PageIsAdmin"] = true
- c.Data["PageIsAdminOrganizations"] = true
- routes.RenderUserSearch(c, &routes.UserSearchOptions{
- Type: models.UserTypeOrganization,
- Counter: models.CountOrganizations,
- Ranger: models.Organizations,
- PageSize: setting.UI.Admin.OrgPagingNum,
- OrderBy: "id ASC",
- TplName: OrgsTPL,
- })
- }
|