mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
561 B
22 lines
561 B
package org |
|
|
|
import ( |
|
"github.com/go-martini/martini" |
|
"github.com/gogits/gogs/modules/middleware" |
|
) |
|
|
|
func Organization(ctx *middleware.Context, params martini.Params) { |
|
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") |
|
} |
|
|
|
|