summaryrefslogtreecommitdiffstats
path: root/routers/admin
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@sapk.fr>2015-09-25 18:13:38 +0200
committerAntoine GIRARD <sapk@sapk.fr>2015-09-25 18:13:38 +0200
commit14a11011390000cc21d134c3e612dda0fb9f490c (patch)
treed059e810efbb0b218b88ff719a84d8b10d9c6fb8 /routers/admin
parent4f8b20995694a21cdde1c2be3b86de8186fe3f42 (diff)
downloadgitea-14a11011390000cc21d134c3e612dda0fb9f490c.tar.gz
gitea-14a11011390000cc21d134c3e612dda0fb9f490c.zip
New admin notice UI based on user list example
Diffstat (limited to 'routers/admin')
-rw-r--r--routers/admin/notice.go17
1 files changed, 12 insertions, 5 deletions
diff --git a/routers/admin/notice.go b/routers/admin/notice.go
index b431946366..b3cadc254d 100644
--- a/routers/admin/notice.go
+++ b/routers/admin/notice.go
@@ -6,11 +6,13 @@ package admin
import (
"github.com/Unknwon/com"
+ "github.com/Unknwon/paginater"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/middleware"
+ "github.com/gogits/gogs/modules/setting"
)
const (
@@ -22,15 +24,20 @@ func Notices(ctx *middleware.Context) {
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminNotices"] = true
- pageNum := 50
- p := pagination(ctx, models.CountNotices(), pageNum)
-
- notices, err := models.GetNotices(pageNum, (p-1)*pageNum)
+ total := models.CountNotices()
+ page := ctx.QueryInt("page")
+ if page <= 1 {
+ page = 1
+ }
+ ctx.Data["Page"] = paginater.New(int(total), setting.AdminNoticePagingNum, page, 5)
+
+ notices, err := models.Notices(page, setting.AdminNoticePagingNum)
if err != nil {
- ctx.Handle(500, "GetNotices", err)
+ ctx.Handle(500, "Notices", err)
return
}
ctx.Data["Notices"] = notices
+ ctx.Data["Total"] = total
ctx.HTML(200, NOTICES)
}