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