2014-03-13 04:15:58 +00:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/martini-contrib/render"
|
|
|
|
)
|
|
|
|
|
2014-03-13 04:50:07 +00:00
|
|
|
func Single(r render.Render, data base.TmplData) {
|
|
|
|
if !data["IsRepositoryValid"].(bool) {
|
2014-03-13 04:15:58 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
data["IsRepoToolbarSource"] = true
|
|
|
|
r.HTML(200, "repo/single", data)
|
|
|
|
}
|