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.
gitea-fork-majority-judgment/routers/repo/single.go

15 lines
277 B

package repo
import (
"github.com/gogits/gogs/modules/base"
"github.com/martini-contrib/render"
)
func Single(r render.Render, data base.TmplData) {
if !data["IsRepositoryValid"].(bool) {
return
}
data["IsRepoToolbarSource"] = true
r.HTML(200, "repo/single", data)
}