commits.tmpl 383 B

123456789101112131415
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. {{template "repo/nav" .}}
  4. {{template "repo/toolbar" .}}
  5. <div id="gogs-body" class="container">
  6. <div id="gogs-commits">
  7. <ul>
  8. {{$r := List .Commits}}
  9. {{range $r}}
  10. <li>{{.Committer.Name}} - {{.Id}} - {{.Message}} - {{.Committer.When}}</li>
  11. {{end}}
  12. </ul>
  13. </div>
  14. </div>
  15. {{template "base/footer" .}}