diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-27 22:04:04 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-06-27 22:04:04 +0800 |
commit | 1d55ecd29ce261cd3adf78649a44aaa30e4fd468 (patch) | |
tree | 382e94fe58866b8d6f5a30da123159e31e4510bd /routers/org | |
parent | b5ba2bd268b144ae0c878fe17257d8685d92f9cc (diff) | |
download | gitea-1d55ecd29ce261cd3adf78649a44aaa30e4fd468.tar.gz gitea-1d55ecd29ce261cd3adf78649a44aaa30e4fd468.zip |
add organization team-create 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 9585cb272e..9ca5185a94 100644 --- a/routers/org/teams.go +++ b/routers/org/teams.go @@ -14,3 +14,8 @@ func NewTeam(ctx *middleware.Context, params martini.Params) { ctx.Data["Title"] = "Organization "+params["org"]+" New Team" ctx.HTML(200, "org/new_team") } + +func EditTeam(ctx *middleware.Context, params martini.Params){ + ctx.Data["Title"] = "Organization "+params["org"]+" Edit Team" + ctx.HTML(200,"org/edit_team") +} |