mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<topnav icon="fa fa-fw fa-user" title="Global users" subnav="true">
|
|
<ul class="nav">
|
|
<li class="active"><a href="admin/users">Overview</a></li>
|
|
<li><a href="admin/users/create">Create user</a></li>
|
|
</ul>
|
|
</topnav>
|
|
|
|
<div class="page-container">
|
|
<div class="page">
|
|
<h2>
|
|
Users
|
|
</h2>
|
|
|
|
<table class="grafana-options-table">
|
|
<tr>
|
|
<th style="text-align:left">Id</th>
|
|
<th>Name</th>
|
|
<th>Login</th>
|
|
<th>Email</th>
|
|
<th style="white-space: nowrap">Grafana Admin</th>
|
|
<th></th>
|
|
</tr>
|
|
<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 style="width: 1%">
|
|
<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>
|
|
</table>
|
|
</div>
|
|
</div>
|