diff options
Diffstat (limited to 'admin/resources/partials/role-mappings.html')
-rw-r--r-- | admin/resources/partials/role-mappings.html | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/admin/resources/partials/role-mappings.html b/admin/resources/partials/role-mappings.html new file mode 100644 index 0000000..184a849 --- /dev/null +++ b/admin/resources/partials/role-mappings.html @@ -0,0 +1,119 @@ +<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> + + <form class="form-horizontal" name="realmForm" novalidate> + <div class="form-group" kc-read-only="!user.access.mapRoles"> + <label class="col-md-2 control-label" class="control-label">{{:: 'realm-roles' | translate}}</label> + + <div class="col-md-10"> + <div class="row"> + <div class="col-md-3"> + <label class="control-label" for="available">{{:: 'available-roles' | translate}}</label> + <select id="available" class="form-control overflow-select" multiple size="5" realmMappings + ng-multiple="true" + ng-model="selectedRealmRoles"> + <option ng-repeat="r in realmRoles | orderBy:'name'" + value="{{r}}" title="{{r.name}}"> + {{r.name}} + </option> + </select> + <button ng-disabled="selectedRealmRoles.length == 0" ng-disabled="c.length == 0" class="btn btn-default" type="submit" ng-click="addRealmRole()"> + {{:: 'add-selected' | translate}} <i class="fa fa-angle-right"></i> + </button> + <kc-tooltip>{{:: 'user.add-selected.tooltip' | translate}}</kc-tooltip> + </div> + <div class="col-md-3"> + <label class="control-label" for="assigned">{{:: 'assigned-roles' | translate}}</label> + <kc-tooltip>{{:: 'user.assigned-roles.tooltip' | translate}}</kc-tooltip> + <select id="assigned" class="form-control overflow-select" multiple size="5" + ng-multiple="true" + ng-model="selectedRealmMappings"> + <option ng-repeat="r in realmMappings | orderBy:'name'" + value="{{r}}" title="{{r.name}}"> + {{r.name}} + </option> + </select> + <button ng-disabled="selectedRealmMappings.length == 0" class="btn btn-default" type="submit" ng-click="deleteRealmRole()"> + <i class="fa fa-angle-double-left"></i> {{:: 'remove-selected' | translate}} + </button> + </div> + <div class="col-md-3"> + <label class="control-label" for="realm-composite">{{:: 'effective-roles' | translate}}</label> + <kc-tooltip>{{:: 'user.effective-roles.tooltip' | translate}}</kc-tooltip> + <select id="realm-composite" class="form-control overflow-select" multiple size="5" + disabled="true" + ng-model="dummymodel"> + <option ng-repeat="r in realmComposite | orderBy:'name'" + value="{{r}}" title="{{r.name}}"> + {{r.name}} + </option> + </select> + </div> + </div> + </div> + </div> + + <div class="form-group"> + <label class="col-md-2 control-label" for="clients">{{:: 'client-roles' | translate}}</label> + <div class="col-md-6"> + <input type="hidden" ui-select2="clientsUiSelect" id="clients" data-ng-model="selectedClient" data-ng-change="changeClient(selectedClient);" data-placeholder="{{:: 'authz-select-client' | translate}}..."> + </input> + </div> + + + <div class="col-md-10 col-md-push-2" kc-read-only="!user.access.mapRoles"> + <div class="row" data-ng-show="selectedClient"> + <div class="col-md-3"> + <label class="control-label" for="available-client">{{:: 'available-roles' | translate}}</label> + <kc-tooltip>{{:: 'user.available-roles.tooltip' | translate}}</kc-tooltip> + <select id="available-client" class="form-control overflow-select" multiple size="5" + ng-multiple="true" + ng-model="selectedClientRoles"> + <option ng-repeat="r in clientRoles | orderBy:'name'" + value="{{r}}" title="{{r.name}}"> + {{r.name}} + </option> + </select> + <button ng-disabled="selectedClientRoles.length == 0" class="btn btn-default" type="submit" ng-click="addClientRole()"> + {{:: 'add-selected' | translate}} <i class="fa fa-angle-double-right"></i> + </button> + </div> + <div class="col-md-3"> + <label class="control-label" for="assigned-client">{{:: 'assigned-roles' | translate}}</label> + <kc-tooltip>{{:: 'user.assigned-roles-client.tooltip' | translate}}</kc-tooltip> + <select id="assigned-client" class="form-control overflow-select" multiple size=5 + ng-multiple="true" + ng-model="selectedClientMappings"> + <option ng-repeat="r in clientMappings | orderBy:'name'" + value="{{r}}" title="{{r.name}}"> + {{r.name}} + </option> + </select> + <button ng-disabled="selectedClientMappings.length == 0" class="btn btn-default" type="submit" ng-click="deleteClientRole()"> + <i class="fa fa-angle-double-left"></i> {{:: 'remove-selected' | translate}} + </button> + </div> + <div class="col-md-3"> + <label class="control-label" for="client-composite">{{:: 'effective-roles' | translate}}</label> + <kc-tooltip>{{:: 'user.effective-roles-client.tooltip' | translate}}</kc-tooltip> + <select id="client-composite" class="form-control overflow-select" multiple size=5 + disabled="true" + ng-model="dummymodel"> + <option ng-repeat="r in clientComposite | orderBy:'name'" + value="{{r}}" title="{{r.name}}"> + {{r.name}} + </option> + </select> + </div> + </div> + </div> + </div> + </form> +</div> + +<kc-menu></kc-menu>
\ No newline at end of file |