mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
42 lines
1.6 KiB
Cheetah
42 lines
1.6 KiB
Cheetah
{{template "base/head" .}}
|
|
{{template "base/navbar" .}}
|
|
<div id="gogs-body" class="container" data-page="admin">
|
|
{{template "admin/nav" .}}
|
|
<div id="gogs-admin-container" class="col-md-9">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
User Management
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<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>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Users}}
|
|
<tr>
|
|
<td>{{.Id}}</td>
|
|
<td><a href="/user/{{.Name}}">{{.Name}}</a></td>
|
|
<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>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}} |