mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
add parent folder link in file list
This commit is contained in:
parent
a22c4ba71d
commit
67f92c9d47
2 changed files with 13 additions and 0 deletions
|
@ -87,6 +87,11 @@ func Single(ctx *middleware.Context, params martini.Params) {
|
||||||
for i, _ := range treenames {
|
for i, _ := range treenames {
|
||||||
Paths = append(Paths, strings.Join(treenames[0:i+1], "/"))
|
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
|
// Get latest commit according username and repo name
|
||||||
|
|
|
@ -57,6 +57,14 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
{{if .HasParentPath}}
|
||||||
|
<tr class="has-parent">
|
||||||
|
<td class="icon"><a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}{{.ParentPath}}"><i class="fa fa-reply"></i></a></td>
|
||||||
|
<td class="name"><a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}{{.ParentPath}}">..</a></td>
|
||||||
|
<td class="text"></td>
|
||||||
|
<td class="date"></td>
|
||||||
|
</tr>
|
||||||
|
{{end}}
|
||||||
{{range .Files}}
|
{{range .Files}}
|
||||||
<tr
|
<tr
|
||||||
{{if .IsDir}}class="is-dir"{{end}}>
|
{{if .IsDir}}class="is-dir"{{end}}>
|
||||||
|
|
Loading…
Reference in a new issue