mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
Fix
This commit is contained in:
parent
79633ab1fb
commit
743fee6015
2 changed files with 16 additions and 7 deletions
|
@ -5,6 +5,7 @@
|
||||||
package routers
|
package routers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/gogits/gogs/modules/base"
|
||||||
"github.com/gogits/gogs/modules/middleware"
|
"github.com/gogits/gogs/modules/middleware"
|
||||||
"github.com/gogits/gogs/routers/user"
|
"github.com/gogits/gogs/routers/user"
|
||||||
)
|
)
|
||||||
|
@ -14,6 +15,14 @@ func Home(ctx *middleware.Context) {
|
||||||
user.Dashboard(ctx)
|
user.Dashboard(ctx)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check auto-login.
|
||||||
|
userName := ctx.GetCookie(base.CookieUserName)
|
||||||
|
if len(userName) != 0 {
|
||||||
|
ctx.Redirect("/user/login")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
ctx.Data["PageIsHome"] = true
|
ctx.Data["PageIsHome"] = true
|
||||||
ctx.HTML(200, "home")
|
ctx.HTML(200, "home")
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
<i class="icon fa fa-file-text-o"></i>
|
<i class="icon fa fa-file-text-o"></i>
|
||||||
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
||||||
<div class="btn-group pull-right">
|
|
||||||
<a class="btn btn-default hidden" href="#">Edit</a>
|
|
||||||
<a class="btn btn-default" href="{{.FileLink}}">Raw</a>
|
|
||||||
<a class="btn btn-default hidden" href="#">Blame</a>
|
|
||||||
<a class="btn btn-default hidden" href="#">History</a>
|
|
||||||
<a class="btn btn-danger hidden" href="#">Delete</a>
|
|
||||||
</div>
|
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<div class="btn-group pull-right">
|
||||||
|
<a class="btn btn-default hidden" href="#">Edit</a>
|
||||||
|
<a class="btn btn-default" href="{{.FileLink}}">Raw</a>
|
||||||
|
<a class="btn btn-default hidden" href="#">Blame</a>
|
||||||
|
<a class="btn btn-default hidden" href="#">History</a>
|
||||||
|
<a class="btn btn-danger hidden" href="#">Delete</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{if not .FileIsText}}
|
{{if not .FileIsText}}
|
||||||
<div class="panel-footer text-center">
|
<div class="panel-footer text-center">
|
||||||
|
|
Loading…
Reference in a new issue