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