gitea/templates/admin/repos.tmpl

42 lines
1.5 KiB
Cheetah
Raw Normal View History

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