2014-03-17 04:58:34 -06:00
|
|
|
{{template "base/head" .}}
|
|
|
|
{{template "base/navbar" .}}
|
|
|
|
{{template "repo/nav" .}}
|
|
|
|
{{template "repo/toolbar" .}}
|
2014-03-25 04:44:37 -06:00
|
|
|
<div id="body" class="container">
|
|
|
|
<div id="commits">
|
2014-03-19 08:03:06 -06:00
|
|
|
<div class="panel panel-default commit-box info-box">
|
|
|
|
<div class="panel-heading info-head">
|
2014-04-11 07:56:40 -06:00
|
|
|
<form class="search pull-right col-md-3" action="" method="post" id="commits-search-form">
|
|
|
|
<div class="input-group">
|
|
|
|
<input class="form-control search" type="search" placeholder="search commit" name="q"/>
|
|
|
|
<div class="input-group-btn">
|
|
|
|
<button type="button" class="btn btn-default">Find</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2014-03-19 11:24:46 -06:00
|
|
|
<h4>{{.CommitCount}} Commits</h4>
|
2014-03-19 08:03:06 -06:00
|
|
|
</div>
|
|
|
|
<table class="panel-footer table commit-list table table-striped">
|
|
|
|
<thead>
|
2014-03-19 11:14:56 -06:00
|
|
|
<tr>
|
|
|
|
<th class="author">Author</th>
|
|
|
|
<th class="sha">Commit</th>
|
|
|
|
<th class="message">Message</th>
|
|
|
|
<th class="date">Date</th>
|
|
|
|
</tr>
|
2014-03-19 08:03:06 -06:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2014-03-19 11:14:56 -06:00
|
|
|
{{ $username := .Username}}
|
|
|
|
{{ $reponame := .Reponame}}
|
|
|
|
{{$r := List .Commits}}
|
|
|
|
{{range $r}}
|
2014-03-19 08:03:06 -06:00
|
|
|
<tr>
|
2014-03-19 21:20:55 -06:00
|
|
|
<td class="author"><img class="avatar" src="{{AvatarLink .Committer.Email}}" alt=""/><a href="/user/{{.Committer.Name}}">{{.Committer.Name}}</a></td>
|
2014-03-27 10:07:22 -06:00
|
|
|
<td class="sha"><a class="label label-success" href="/{{$username}}/{{$reponame}}/commit/{{.Id}} ">{{SubStr .Id.String 0 10}} </a></td>
|
2014-03-19 11:14:56 -06:00
|
|
|
<td class="message">{{.Message}} </td>
|
|
|
|
<td class="date">{{TimeSince .Committer.When}}</td>
|
2014-03-19 08:03:06 -06:00
|
|
|
</tr>
|
2014-03-19 11:14:56 -06:00
|
|
|
{{end}}
|
2014-03-19 08:03:06 -06:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2014-04-11 07:56:40 -06:00
|
|
|
<ul class="pagination" id="commits-pager">
|
|
|
|
<li><a href="#">«</a></li>
|
|
|
|
<li><a href="#">1</a></li>
|
|
|
|
<li><a href="#">2</a></li>
|
|
|
|
<li><a href="#">3</a></li>
|
|
|
|
<li><a href="#">4</a></li>
|
|
|
|
<li><a href="#">5</a></li>
|
|
|
|
<li><a href="#">»</a></li>
|
|
|
|
</ul>
|
2014-03-17 04:58:34 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-27 10:07:22 -06:00
|
|
|
{{template "base/footer" .}}
|