Merge pull request #2049 from stianst/KEYCLOAK-2160
KEYCLOAK-2160 Add id to user table
This commit is contained in:
commit
594c1451c0
1 changed files with 6 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
||||||
<caption data-ng-show="users" class="hidden">Table of realm users</caption>
|
<caption data-ng-show="users" class="hidden">Table of realm users</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="{{access.impersonation == true ? '7' : '6'}}">
|
<th colspan="{{access.impersonation == true ? '8' : '7'}}">
|
||||||
<div class="form-inline">
|
<div class="form-inline">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
|
@ -26,10 +26,11 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<tr data-ng-show="searchLoaded && users.length > 0">
|
<tr data-ng-show="searchLoaded && users.length > 0">
|
||||||
|
<th>ID</th>
|
||||||
<th>Username</th>
|
<th>Username</th>
|
||||||
|
<th>Email</th>
|
||||||
<th>Last Name</th>
|
<th>Last Name</th>
|
||||||
<th>First Name</th>
|
<th>First Name</th>
|
||||||
<th>Email</th>
|
|
||||||
<th colspan="{{access.impersonation == true ? '3' : '2'}}">Actions</th>
|
<th colspan="{{access.impersonation == true ? '3' : '2'}}">Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -47,10 +48,11 @@
|
||||||
</tfoot>
|
</tfoot>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="user in users">
|
<tr ng-repeat="user in users">
|
||||||
<td><a href="#/realms/{{realm.realm}}/users/{{user.id}}">{{user.username}}</a></td>
|
<td style="max-width: 10em;"><a href="#/realms/{{realm.realm}}/users/{{user.id}}">{{user.id}}</a></td>
|
||||||
|
<td>{{user.username}}</td>
|
||||||
|
<td>{{user.email}}</td>
|
||||||
<td>{{user.lastName}}</td>
|
<td>{{user.lastName}}</td>
|
||||||
<td>{{user.firstName}}</td>
|
<td>{{user.firstName}}</td>
|
||||||
<td>{{user.email}}</td>
|
|
||||||
<td class="kc-action-cell">
|
<td class="kc-action-cell">
|
||||||
<button class="btn btn-default btn-block btn-sm" kc-open="/realms/{{realm.realm}}/users/{{user.id}}">Edit</button>
|
<button class="btn btn-default btn-block btn-sm" kc-open="/realms/{{realm.realm}}/users/{{user.id}}">Edit</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue