summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-07-12 00:55:35 -0400
committerUnknown <joe2010xtmf@163.com>2014-07-12 00:55:35 -0400
commit3969d704a014c54e55281cd9b30e622acbd447c4 (patch)
tree7547f6a6672a4d22fe2844ca24285b83d7384a86 /routers
parent0f907301b7fbd05faf07bc22b3316ae1093c6724 (diff)
parent590f9e599c9a1d544623c79a0064a09ca005f2d8 (diff)
downloadgitea-3969d704a014c54e55281cd9b30e622acbd447c4.tar.gz
gitea-3969d704a014c54e55281cd9b30e622acbd447c4.zip
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'routers')
-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")
+}