1
0
mirror of https://gitcode.com/gitea/gitea.git synced 2025-07-29 12:32:40 +08:00

add organization setting page

This commit is contained in:
fuxiaohei
2014-06-23 19:11:20 +08:00
parent f393dc6520
commit fb53cc4fa8
3 changed files with 157 additions and 0 deletions
cmd
routers/org
templates/org

@ -29,3 +29,8 @@ func Dashboard(ctx *middleware.Context, params martini.Params) {
ctx.Data["Title"] = "Dashboard"
ctx.HTML(200, "org/dashboard")
}
func Setting(ctx *middleware.Context, param martini.Params) {
ctx.Data["Title"] = "Setting"
ctx.HTML(200, "org/setting")
}