bench-forgejo/templates/repo/commits.tmpl

50 lines
2.5 KiB
Cheetah
Raw Normal View History

2014-03-17 16:28:34 +05:30
{{template "base/head" .}}
{{template "base/navbar" .}}
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
2014-03-25 16:14:37 +05:30
<div id="body" class="container">
<div id="commits">
2014-03-19 19:33:06 +05:30
<div class="panel panel-default commit-box info-box">
<div class="panel-heading info-head">
2014-04-12 05:14:13 +05:30
<form class="search pull-right col-md-3" action="{{.RepoLink}}/commits/{{.BranchName}}/search" method="get" id="commits-search-form">
<div class="input-group">
2014-04-12 05:14:13 +05:30
<input class="form-control search" type="search" placeholder="search commit" name="q" value="{{.Keyword}}" />
<div class="input-group-btn">
2014-04-12 05:14:13 +05:30
<button type="submit" class="btn btn-default">Find</button>
</div>
</div>
</form>
2014-03-19 22:54:46 +05:30
<h4>{{.CommitCount}} Commits</h4>
2014-03-19 19:33:06 +05:30
</div>
<table class="panel-footer table commit-list table table-striped">
<thead>
2014-03-19 22:44:56 +05:30
<tr>
<th class="author">Author</th>
2014-04-12 05:14:13 +05:30
<th class="sha">SHA1</th>
2014-03-19 22:44:56 +05:30
<th class="message">Message</th>
<th class="date">Date</th>
</tr>
2014-03-19 19:33:06 +05:30
</thead>
<tbody>
2014-03-19 22:44:56 +05:30
{{ $username := .Username}}
{{ $reponame := .Reponame}}
{{$r := List .Commits}}
{{range $r}}
2014-03-19 19:33:06 +05:30
<tr>
2014-04-13 06:05:35 +05:30
<td class="author"><img class="avatar" src="{{AvatarLink .Author.Email}}" alt=""/><a href="/user/email2user?email={{.Author.Email}}">{{.Author.Name}}</a></td>
2014-04-16 05:31:20 +05:30
<td class="sha"><a rel="nofollow" class="label label-success" href="/{{$username}}/{{$reponame}}/commit/{{.Id}} ">{{SubStr .Id.String 0 10}} </a></td>
<td class="message">{{.Summary}} </td>
2014-04-12 05:14:13 +05:30
<td class="date">{{TimeSince .Author.When}}</td>
2014-03-19 19:33:06 +05:30
</tr>
2014-03-19 22:44:56 +05:30
{{end}}
2014-03-19 19:33:06 +05:30
</tbody>
</table>
</div>
2014-04-12 05:53:34 +05:30
{{if not .IsSearchPage}}<ul class="pagination" id="commits-pager">
2014-05-13 05:52:35 +05:30
{{if .LastPageNum}}<li><a href="{{.RepoLink}}/commits/{{.BranchName}}{{if .FileName}}/{{.FileName}}{{end}}?p={{.LastPageNum}}" rel="nofollow">&laquo; Newer</a></li>{{end}}
{{if .NextPageNum}}<li><a href="{{.RepoLink}}/commits/{{.BranchName}}{{if .FileName}}/{{.FileName}}{{end}}?p={{.NextPageNum}}" rel="nofollow">&raquo; Older</a></li>{{end}}
2014-04-12 05:53:34 +05:30
</ul>{{end}}
2014-03-17 16:28:34 +05:30
</div>
</div>
2014-03-27 21:37:22 +05:30
{{template "base/footer" .}}