2014-08-29 18:20:43 +05:30
|
|
|
// 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 (
|
2015-09-25 23:24:52 +05:30
|
|
|
"github.com/Unknwon/paginater"
|
|
|
|
|
2014-08-29 18:20:43 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2015-09-25 23:24:52 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-08-29 18:20:43 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ORGS base.TplName = "admin/org/list"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Organizations(ctx *middleware.Context) {
|
2015-09-25 23:24:52 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.organizations")
|
2014-08-29 18:20:43 +05:30
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminOrganizations"] = true
|
|
|
|
|
2015-09-25 23:24:52 +05:30
|
|
|
total := models.CountOrganizations()
|
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
ctx.Data["Page"] = paginater.New(int(total), setting.AdminOrgPagingNum, page, 5)
|
|
|
|
|
|
|
|
orgs, err := models.Organizations(page, setting.AdminOrgPagingNum)
|
|
|
|
|
2014-08-29 18:20:43 +05:30
|
|
|
if err != nil {
|
2015-09-25 23:24:52 +05:30
|
|
|
ctx.Handle(500, "Organizations", err)
|
2014-08-29 18:20:43 +05:30
|
|
|
return
|
|
|
|
}
|
2015-09-25 23:24:52 +05:30
|
|
|
|
|
|
|
ctx.Data["Orgs"] = orgs
|
|
|
|
ctx.Data["Total"] = total
|
|
|
|
|
2014-08-29 18:20:43 +05:30
|
|
|
ctx.HTML(200, ORGS)
|
|
|
|
}
|