summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/commits.tmpl')
-rw-r--r--templates/repo/commits.tmpl40
1 files changed, 0 insertions, 40 deletions
diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl
deleted file mode 100644
index efe35936c4..0000000000
--- a/templates/repo/commits.tmpl
+++ /dev/null
@@ -1,40 +0,0 @@
-{{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">
- <div class="search pull-right form">
- <input class="form-control search" type="search" placeholder="search commit"/>
- </div>
- <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">Commit</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 .Committer.Email}}" alt=""/><a href="/user/{{.Committer.Name}}">{{.Committer.Name}}</a></td>
- <td class="sha"><a 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 .Committer.When}}</td>
- </tr>
- {{end}}
- </tbody>
- </table>
- </div>
- </div>
-</div>
-{{template "base/footer" .}}