bench-forgejo/templates/admin/repos.tmpl

42 lines
1.5 KiB
Cheetah
Raw Normal View History

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>
<th>Forks</th>
<th>Created</th>
</tr>
</thead>
<tbody>
{{range .Repos}}
<tr>
<td>{{.Id}}</td>
2014-03-21 10:39:22 +05:30
<th>{{.UserName}}</th>
<td><a href="/{{.UserName}}/{{.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>
<td>{{.NumForks}}</td>
<td>{{DateFormat .Created "M d, Y"}}</td>
</tr>
{{end}}
</tbody>
</table>
2014-03-20 17:20:26 +05:30
</div>
</div>
</div>
</div>
{{template "base/footer" .}}