diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-07-07 18:13:42 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-07-07 18:13:42 +0800 |
commit | c127d8477759d0236cb599b9bde3d8fe9449d723 (patch) | |
tree | 58a5640816a7867ae9fa3d2b07df40a74d8de07d /routers/org | |
parent | 63cc14062a891a99a429f2eef0ee90a3f5795f47 (diff) | |
download | gitea-c127d8477759d0236cb599b9bde3d8fe9449d723.tar.gz gitea-c127d8477759d0236cb599b9bde3d8fe9449d723.zip |
add organization team-single page
Diffstat (limited to 'routers/org')
-rw-r--r-- | routers/org/teams.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/org/teams.go b/routers/org/teams.go index 492739250b..0b17f46368 100644 --- a/routers/org/teams.go +++ b/routers/org/teams.go @@ -129,3 +129,8 @@ func EditTeam(ctx *middleware.Context, params martini.Params) { ctx.Data["Title"] = "Organization " + params["org"] + " Edit Team" ctx.HTML(200, "org/edit_team") } + +func SingleTeam(ctx *middleware.Context,params martini.Params){ + ctx.Data["Title"] = "single-team"+params["org"] + ctx.HTML(200,"org/team") +} |