gitea/templates/admin/users.tmpl

45 lines
1.8 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">
User Management
</div>
<div class="panel-body">
2014-03-21 08:27:59 +01:00
<a href="/admin/users/new" class="btn btn-primary">New Account</a>
2014-03-20 21:04:56 +01:00
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>E-mail</th>
<th>Actived</th>
<th>Admin</th>
<th>Repos</th>
<th>Join</th>
2014-03-21 11:15:58 +01:00
<th>Edit</th>
2014-03-20 21:04:56 +01:00
</tr>
</thead>
<tbody>
{{range .Users}}
<tr>
<td>{{.Id}}</td>
2014-03-21 06:09:22 +01:00
<td><a href="/user/{{.Name}}">{{.Name}}</a></td>
2014-03-20 21:04:56 +01:00
<td>{{.Email}}</td>
<td><i class="fa fa{{if .IsActive}}-check{{end}}-square-o"></i></td>
<td><i class="fa fa{{if .IsAdmin}}-check{{end}}-square-o"></i></td>
<td>{{.NumRepos}}</td>
<td>{{DateFormat .Created "M d, Y"}}</td>
2014-03-21 11:15:58 +01:00
<td><a href="/admin/users/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td>
2014-03-20 21:04:56 +01:00
</tr>
{{end}}
</tbody>
</table>
2014-03-20 12:50:26 +01:00
</div>
</div>
</div>
</div>
{{template "base/footer" .}}