diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-22 21:53:40 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-22 21:53:40 +0800 |
commit | adda10f4a44005880f881bcb9238b74d561f8a1b (patch) | |
tree | 9e247dd21e3e09ff9494ffc3b6fcbf00a615cdf7 /routers/org/org.go | |
parent | 514d7e19227555ecd9e38c642d0b7ea63d7883d2 (diff) | |
download | gitea-adda10f4a44005880f881bcb9238b74d561f8a1b.tar.gz gitea-adda10f4a44005880f881bcb9238b74d561f8a1b.zip |
add organization teams page
Diffstat (limited to 'routers/org/org.go')
-rw-r--r-- | routers/org/org.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/routers/org/org.go b/routers/org/org.go index 69bf0fc48a..21f2a189cf 100644 --- a/routers/org/org.go +++ b/routers/org/org.go @@ -14,3 +14,9 @@ func Members(ctx *middleware.Context,params martini.Params){ ctx.Data["Title"] = "Organization " + params["org"]+" Members" ctx.HTML(200,"org/members") } + +func Teams(ctx *middleware.Context,params martini.Params){ + ctx.Data["Title"] = "Organization " + params["org"]+" Teams" + ctx.HTML(200,"org/teams") +} + |