1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

bug fixed for commits list

This commit is contained in:
Lunny Xiao
2014-03-19 14:39:07 +08:00
parent 3ceb008e1f
commit 3da325591b
4 changed files with 28 additions and 3 deletions

View File

@@ -5,8 +5,9 @@
<div id="gogs-body" class="container">
<div id="gogs-commits">
<ul>
{{range .Commits}}
<li>{{.Committer.Name}} - {{.Id}} - {{.Message}} - {{.Committer.When}}</li>
{{$r := List .Commits}}
{{range $r}}
<li>{{.Committer.Name}} - {{.Id}} - {{.Message}} - {{.Committer.When}}</li>
{{end}}
</ul>
</div>