2014-03-20 12:50:26 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
{{template "base/navbar" .}}
|
2014-03-25 11:44:37 +01:00
|
|
|
<div id="body" class="container" data-page="admin">
|
2014-03-21 06:48:10 +01:00
|
|
|
{{template "admin/nav" .}}
|
2014-04-05 00:31:09 +02:00
|
|
|
<div id="admin-container" class="col-md-10">
|
2014-03-20 12:50:26 +01:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
Repository Management
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
2014-03-20 21:04:56 +01:00
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Id</th>
|
2014-03-21 06:09:22 +01:00
|
|
|
<th>Owner</th>
|
2014-03-20 21:04:56 +01:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Private</th>
|
|
|
|
<th>Watches</th>
|
2014-05-07 18:09:30 +02:00
|
|
|
<th>Issues</th>
|
2014-03-20 21:04:56 +01:00
|
|
|
<th>Forks</th>
|
|
|
|
<th>Created</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range .Repos}}
|
|
|
|
<tr>
|
|
|
|
<td>{{.Id}}</td>
|
2014-05-07 22:51:14 +02:00
|
|
|
<th>{{.Owner.Name}}</th>
|
|
|
|
<td><a href="/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td>
|
2014-03-22 21:00:46 +01:00
|
|
|
<td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td>
|
2014-03-20 21:04:56 +01:00
|
|
|
<td>{{.NumWatches}}</td>
|
2014-05-07 18:09:30 +02:00
|
|
|
<td>{{.NumIssues}}</td>
|
2014-03-20 21:04:56 +01:00
|
|
|
<td>{{.NumForks}}</td>
|
|
|
|
<td>{{DateFormat .Created "M d, Y"}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-07-07 10:15:08 +02:00
|
|
|
<ul class="pagination">
|
|
|
|
{{if .LastPageNum}}<li><a href="/admin/repos?p={{.LastPageNum}}">« Prev.</a></li>{{end}}
|
|
|
|
{{if .NextPageNum}}<li><a href="/admin/repos?p={{.NextPageNum}}">» Next</a></li>{{end}}
|
|
|
|
</ul>
|
2014-03-20 12:50:26 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|