diff options
Diffstat (limited to 'routers')
-rw-r--r-- | routers/dashboard.go | 2 | ||||
-rw-r--r-- | routers/org/org.go | 13 |
2 files changed, 13 insertions, 2 deletions
diff --git a/routers/dashboard.go b/routers/dashboard.go index d65c403c5f..4ef4e54f49 100644 --- a/routers/dashboard.go +++ b/routers/dashboard.go @@ -31,7 +31,7 @@ func Home(ctx *middleware.Context) { ctx.Data["PageIsHome"] = true - // Show recent updated repositoires for new visiters. + // Show recent updated repositories for new visitors. repos, err := models.GetRecentUpdatedRepositories() if err != nil { ctx.Handle(500, "dashboard.Home(GetRecentUpdatedRepositories)", err) diff --git a/routers/org/org.go b/routers/org/org.go index 1c02e77332..21f2a189cf 100644 --- a/routers/org/org.go +++ b/routers/org/org.go @@ -6,6 +6,17 @@ import ( ) func Organization(ctx *middleware.Context, params martini.Params) { - ctx.Data["Title"] = "Organization Name" + params["org"] + ctx.Data["Title"] = "Organization " + params["org"] ctx.HTML(200, "org/org") } + +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") +} + |