diff --git a/cmd/web.go b/cmd/web.go
index da392a1e98..3fc39628bf 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -514,11 +514,11 @@ func runWeb(ctx *cli.Context) {
m.Get("/edit/:tagname", repo.EditRelease)
m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
m.Post("/delete", repo.DeleteRelease)
- }, reqRepoAdmin, middleware.RepoRef())
+ }, reqRepoAdmin)
m.Combo("/compare/*").Get(repo.CompareAndPullRequest).
Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
- }, reqSignIn, middleware.RepoAssignment())
+ }, reqSignIn, middleware.RepoAssignment(), middleware.RepoRef())
m.Group("/:username/:reponame", func() {
m.Group("", func() {
diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl
index 03a07935c8..07762606fa 100644
--- a/templates/repo/commits.tmpl
+++ b/templates/repo/commits.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{template "repo/commits_table" .}}
diff --git a/templates/repo/forks.tmpl b/templates/repo/forks.tmpl
index f541cd0a84..91085b9d22 100644
--- a/templates/repo/forks.tmpl
+++ b/templates/repo/forks.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{end}}
+{{if not .IsBareRepo}}
+
+
+
+
+{{else}}
+
+{{end}}
diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl
index 85094104bf..b733583b0a 100644
--- a/templates/repo/home.tmpl
+++ b/templates/repo/home.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{if .Repository.DescriptionHtml}}{{.Repository.DescriptionHtml}}{{else}}{{.i18n.Tr "repo.no_desc"}}{{end}}
diff --git a/templates/repo/issue/labels.tmpl b/templates/repo/issue/labels.tmpl
index f955973c6d..dd84ce416c 100644
--- a/templates/repo/issue/labels.tmpl
+++ b/templates/repo/issue/labels.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{template "repo/issue/navbar" .}}
diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl
index b927d80063..5b1ad1d026 100644
--- a/templates/repo/issue/list.tmpl
+++ b/templates/repo/issue/list.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{template "repo/issue/navbar" .}}
diff --git a/templates/repo/issue/milestones.tmpl b/templates/repo/issue/milestones.tmpl
index 527a90b4d4..248b81e242 100644
--- a/templates/repo/issue/milestones.tmpl
+++ b/templates/repo/issue/milestones.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{template "repo/issue/navbar" .}}
diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl
index 5c3aaae7ff..5970bda3d2 100644
--- a/templates/repo/release/list.tmpl
+++ b/templates/repo/release/list.tmpl
@@ -1,7 +1,6 @@
{{template "base/head" .}}
{{template "repo/header" .}}
- {{template "repo/sidebar" .}}
{{template "base/alert" .}}