Move existing themes under a default folder
This commit is contained in:
@ -0,0 +1,41 @@
|
||||
<div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="#/realms/{{realm.realm}}/users">{{:: 'users' | translate}}</a></li>
|
||||
<li>{{user.username}}</li>
|
||||
</ol>
|
||||
|
||||
<kc-tabs-user></kc-tabs-user>
|
||||
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{:: 'client' | translate}}</th>
|
||||
<th>{{:: 'granted-client-scopes' | translate}}</th>
|
||||
<th>{{:: 'additional-grants' | translate}}</th>
|
||||
<th>{{:: 'consent-created-date' | translate}}</th>
|
||||
<th>{{:: 'consent-last-updated-date' | translate}}</th>
|
||||
<th>{{:: 'action' | translate}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr data-ng-repeat="consent in userConsents">
|
||||
<td>{{consent.clientId}}</td>
|
||||
<td>
|
||||
<span data-ng-repeat="clientScope in consent.grantedClientScopes">
|
||||
<span ng-if="!$first">, </span>{{clientScope}}
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
<span data-ng-repeat="additionalGrant in consent.additionalGrants">
|
||||
<span ng-if="!$first">, </span><a href="#/realms/{{realm.realm}}/users/{{user.id}}/offline-sessions/{{additionalGrant.client}}">{{additionalGrant.key}}</a>
|
||||
</span>
|
||||
</td>
|
||||
<td>{{consent.createdDate | date :'short'}}</td>
|
||||
<td>{{consent.lastUpdatedDate | date :'short'}}</td>
|
||||
<td class="kc-action-cell" ng-click="revokeConsent(consent.clientId)">{{:: 'revoke' | translate}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<kc-menu></kc-menu>
|
Reference in New Issue
Block a user