From: slene Date: Wed, 19 Mar 2014 16:08:20 +0000 (+0800) Subject: add parent folder link in file list X-Git-Tag: v0.9.99~2398 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=67f92c9d47f6e89a9c332f9e938815eac86d0295;p=gitea.git add parent folder link in file list --- diff --git a/routers/repo/single.go b/routers/repo/single.go index 171b095264..1c4de34a59 100644 --- a/routers/repo/single.go +++ b/routers/repo/single.go @@ -87,6 +87,11 @@ func Single(ctx *middleware.Context, params martini.Params) { for i, _ := range treenames { Paths = append(Paths, strings.Join(treenames[0:i+1], "/")) } + + ctx.Data["HasParentPath"] = true + if len(Paths)-2 >= 0 { + ctx.Data["ParentPath"] = "/" + Paths[len(Paths)-2] + } } // Get latest commit according username and repo name diff --git a/templates/repo/single.tmpl b/templates/repo/single.tmpl index f167444635..e18f79c293 100644 --- a/templates/repo/single.tmpl +++ b/templates/repo/single.tmpl @@ -57,6 +57,14 @@ + {{if .HasParentPath}} + + + .. + + + + {{end}} {{range .Files}}