Added login to organization users table, Fixes #1683

This commit is contained in:
Torkel Ödegaard
2015-04-04 10:14:51 +02:00
parent b8c378f2f0
commit ea800dd838
2 changed files with 8 additions and 0 deletions

View File

@@ -36,7 +36,14 @@
<br> <br>
<table class="grafana-options-table"> <table class="grafana-options-table">
<tr>
<th>Login</th>
<th>Email</th>
<th>Role</th>
<th></th>
</tr>
<tr ng-repeat="user in users"> <tr ng-repeat="user in users">
<td>{{user.login}}</td>
<td>{{user.email}}</td> <td>{{user.email}}</td>
<td> <td>
{{user.role}} {{user.role}}

View File

@@ -2,6 +2,7 @@
width: 100%; width: 100%;
th { th {
text-align: left;
padding: 5px 10px; padding: 5px 10px;
border-bottom: 4px solid @grafanaPanelBackground; border-bottom: 4px solid @grafanaPanelBackground;
} }