summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits.tmpl
blob: 53c14d364ab79e32c0ddb8470a557bc5e8fce688 (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
50
51
52
53
{{template "base/head" .}}
{{template "base/navbar" .}}
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
<div id="gogs-body" class="container">
    <div id="gogs-commits">
        <div class="panel panel-default commit-box info-box">
            <div class="panel-heading info-head">
                <div class="search pull-right form">
                    <input class="form-control search" type="search" placeholder="search commit"/>
                </div>
                <h4>Commits</h4>
            </div>
            <table class="panel-footer table commit-list table table-striped">
                <thead>
                <tr>
                    <th class="author">Author</th>
                    <th class="sha">Commit</th>
                    <th class="message">Message</th>
                    <th class="date">Date</th>
                </tr>
                </thead>
                <tbody>
                <tr>
                    <td class="author"><img class="avatar" src="#" alt=""/>CommitUser</td>
                    <td class="sha"><a class="label label-success" href="#">d91b380</a></td>
                    <td class="message">Fix Synchronize to delete service objects in subduers upon move</td>
                    <td class="date">3 years ago</td>
                </tr>
                <tr>
                    <td class="author"><img class="avatar" src="#" alt=""/>CommitUser</td>
                    <td class="sha"><a class="label label-success" href="#">d91b380</a></td>
                    <td class="message">Fix Synchronize to delete service objects in subduers upon move</td>
                    <td class="date">3 years ago</td>
                </tr>
                <tr>
                    <td class="author"><img class="avatar" src="#" alt=""/>CommitUser</td>
                    <td class="sha"><a class="label label-success" href="#">d91b380</a></td>
                    <td class="message">Fix Synchronize to delete service objects in subduers upon move</td>
                    <td class="date">3 years ago</td>
                </tr>
                </tbody>
            </table>
        </div>
    <ul>
    {{$r := List .Commits}}
    {{range $r}}
		    <li>{{.Committer.Name}} - {{.Id}} - {{.Message}} - {{.Committer.When}}</li>
    {{end}}
    </ul>
    </div>
</div>
{{template "base/footer" .}}