summaryrefslogtreecommitdiffstats
path: root/routers/org
diff options
context:
space:
mode:
authorfuxiaohei <fuxiaohei@vip.qq.com>2014-07-07 18:13:42 +0800
committerfuxiaohei <fuxiaohei@vip.qq.com>2014-07-07 18:13:42 +0800
commitc127d8477759d0236cb599b9bde3d8fe9449d723 (patch)
tree58a5640816a7867ae9fa3d2b07df40a74d8de07d /routers/org
parent63cc14062a891a99a429f2eef0ee90a3f5795f47 (diff)
downloadgitea-c127d8477759d0236cb599b9bde3d8fe9449d723.tar.gz
gitea-c127d8477759d0236cb599b9bde3d8fe9449d723.zip
add organization team-single page
Diffstat (limited to 'routers/org')
-rw-r--r--routers/org/teams.go5
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")
+}