| 123456789101112131415161718192021222324252627282930 |
- package admin
- import (
- "gitote/gitote/models"
- "gitote/gitote/pkg/context"
- "gitote/gitote/pkg/setting"
- "gitote/gitote/routes"
- )
- const (
- // ORGS list page template
- ORGS = "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.USER_TYPE_ORGANIZATION,
- Counter: models.CountOrganizations,
- Ranger: models.Organizations,
- PageSize: setting.UI.Admin.OrgPagingNum,
- OrderBy: "id ASC",
- TplName: ORGS,
- })
- }
|