2015-05-19 03:16:32 -05:00
|
|
|
<topnav icon="fa fa-fw fa-user" title="Global Users" subnav="true">
|
2015-02-07 05:28:47 -06:00
|
|
|
<ul class="nav">
|
2015-08-12 01:59:25 -05:00
|
|
|
<li class="active"><a href="admin/users">List</a></li>
|
2015-02-10 08:36:51 -06:00
|
|
|
<li><a href="admin/users/create">Create user</a></li>
|
2015-02-07 05:28:47 -06:00
|
|
|
</ul>
|
2015-01-30 07:12:16 -06:00
|
|
|
</topnav>
|
2015-01-15 08:53:55 -06:00
|
|
|
|
2015-11-19 21:02:38 -06:00
|
|
|
<div class="page-container" style="background: transparent; border: 0;">
|
|
|
|
<div class="page-wide">
|
2015-02-10 08:36:51 -06:00
|
|
|
<h2>
|
|
|
|
Users
|
|
|
|
</h2>
|
2015-01-15 08:53:55 -06:00
|
|
|
|
2015-11-19 21:02:38 -06:00
|
|
|
<table class="filter-table form-inline">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Id</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Login</th>
|
|
|
|
<th>Email</th>
|
|
|
|
<th style="white-space: nowrap">Grafana Admin</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="user in users">
|
|
|
|
<td>{{user.id}}</td>
|
|
|
|
<td>{{user.name}}</td>
|
|
|
|
<td>{{user.login}}</td>
|
|
|
|
<td>{{user.email}}</td>
|
|
|
|
<td>{{user.isAdmin}}</td>
|
|
|
|
<td class="text-right">
|
|
|
|
<a href="admin/users/edit/{{user.id}}" class="btn btn-inverse btn-small">
|
|
|
|
<i class="fa fa-edit"></i>
|
|
|
|
Edit
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a ng-click="deleteUser(user)" class="btn btn-danger btn-small">
|
|
|
|
<i class="fa fa-remove"></i>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2015-02-08 03:23:35 -06:00
|
|
|
</table>
|
2015-01-15 08:53:55 -06:00
|
|
|
</div>
|
|
|
|
</div>
|