2015-01-17 03:39:01 -06:00
|
|
|
<div ng-include="'app/partials/navbar.html'" ng-init="pageTitle='Admin > Accounts'"></div>
|
2015-01-15 08:53:55 -06:00
|
|
|
|
|
|
|
<div class="dashboard-edit-view" style="min-height: 500px">
|
|
|
|
|
2015-01-17 03:39:01 -06:00
|
|
|
<div class="dashboard-editor-body">
|
2015-01-15 08:53:55 -06:00
|
|
|
|
2015-01-17 03:39:01 -06:00
|
|
|
<div class="editor-row row">
|
|
|
|
<div class="section span6">
|
|
|
|
<table class="grafana-options-table">
|
|
|
|
<tr>
|
|
|
|
<th style="text-align:left">Id</th>
|
|
|
|
<th>Login</th>
|
|
|
|
<th>Email</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Admin</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
<tr ng-repeat="account in accounts">
|
|
|
|
<td>{{account.id}}</td>
|
|
|
|
<td>{{account.login}}</td>
|
|
|
|
<td>{{account.email}}</td>
|
|
|
|
<td>{{account.name}}</td>
|
|
|
|
<td>{{account.isAdmin}}</td>
|
|
|
|
<td style="width: 1%">
|
|
|
|
<a ng-click="edit(variable)" class="btn btn-success btn-small">
|
|
|
|
<i class="fa fa-edit"></i>
|
|
|
|
Edit
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a ng-click="edit(variable)" class="btn btn-danger btn-small">
|
|
|
|
<i class="fa fa-remove"></i>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2015-01-15 08:53:55 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|