summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits.tmpl
blob: b14c6bc8c65128f2a7c0ec67397a35a2f5a8cc27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{template "base/head" .}}
{{template "base/navbar" .}}
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
<div id="body" class="container">
    <div id="commits">
        <div class="panel panel-default commit-box info-box">
            <div class="panel-heading info-head">
                <form class="search pull-right col-md-3" action="{{.RepoLink}}/commits/{{.BranchName}}/search" method="get" id="commits-search-form">
                    <div class="input-group">
                        <input class="form-control search" type="search" placeholder="search commit" name="q" value="{{.Keyword}}" />
                        <div class="input-group-btn">
                            <button type="submit" class="btn btn-default">Find</button>
                        </div>
                    </div>
                </form>
                <h4>{{.CommitCount}} Commits</h4>
            </div>
            <table class="panel-footer table commit-list table table-striped">
                <thead>
                    <tr>
                        <th class="author">Author</th>
                        <th class="sha">SHA1</th>
                        <th class="message">Message</th>
                        <th class="date">Date</th>
                    </tr>
                </thead>
                <tbody>
                {{ $username := .Username}}
                {{ $reponame := .Reponame}}
                {{$r := List .Commits}}
                {{range $r}}
                <tr>
                    <td class="author"><img class="avatar" src="{{AvatarLink .Author.Email}}" alt=""/><a href="/user/email2user?email={{.Author.Email}}">{{.Author.Name}}</a></td>
                    <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">{{.Message}} </td>
                    <td class="date">{{TimeSince .Author.When}}</td>
                </tr>
                {{end}}
                </tbody>
            </table>
        </div>
        {{if not .IsSearchPage}}<ul class="pagination" id="commits-pager">
            {{if .LastPageNum}}<li><a href="{{.RepoLink}}/commits/{{.BranchName}}?p={{.LastPageNum}}">&laquo; Newer</a></li>{{end}}
            {{if .NextPageNum}}<li><a href="{{.RepoLink}}/commits/{{.BranchName}}?p={{.NextPageNum}}">&raquo; Older</a></li>{{end}}
        </ul>{{end}}
    </div>
</div>
{{template "base/footer" .}}