diff options
Diffstat (limited to 'admin/resources/partials/client-scope-mappings.html')
-rw-r--r-- | admin/resources/partials/client-scope-mappings.html | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/admin/resources/partials/client-scope-mappings.html b/admin/resources/partials/client-scope-mappings.html new file mode 100644 index 0000000..1343f1b --- /dev/null +++ b/admin/resources/partials/client-scope-mappings.html @@ -0,0 +1,127 @@ +<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}}/clients">{{:: 'clients' | translate}}</a></li> + <li>{{client.clientId}}</li> + </ol> + + <kc-tabs-client></kc-tabs-client> + + <h2><span>{{client.clientId}}</span> {{:: 'scope-mappings' | translate}} </h2> + <p class="subtitle"></p> + <form class="form-horizontal" name="allowScope" novalidate kc-read-only="!client.access.manage"> + <fieldset class="border-top"> + <div class="form-group"> + <label class="col-md-2 control-label" for="fullScopeAllowed">{{:: 'full-scope-allowed' | translate}}</label> + <kc-tooltip>{{:: 'full-scope-allowed.tooltip' | translate}}</kc-tooltip> + <div class="col-md-6"> + <input kc-read-only="!client.access.manage" ng-model="client.fullScopeAllowed" ng-click="changeFlag()" name="fullScopeAllowed" id="fullScopeAllowed" onoffswitch on-text="{{:: 'onText' | translate}}" off-text="{{:: 'offText' | translate}}" /> + </div> + </div> + </fieldset> + </form> + + <form class="form-horizontal" name="realmForm" novalidate kc-read-only="!client.access.manage" data-ng-hide="hideRoleSelector()"> + <div class="form-group"> + <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> + <kc-tooltip>{{:: 'scope.available-roles.tooltip' | translate}}</kc-tooltip> + + <select id="available" class="form-control overflow-select" multiple size="5" + 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" class="btn btn-default" type="submit" ng-click="addRealmRole()"> + {{:: 'add-selected' | translate}} <i class="fa fa-angle-double-right"></i> + </button> + </div> + <div class="col-md-3"> + <label class="control-label" for="assigned">{{:: 'assigned-roles' | translate}}</label> + <kc-tooltip>{{:: '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>{{:: 'realm.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="selectClient(selectedClient);" data-placeholder="{{:: 'authz-select-client' | translate}}..."> + </input> + </div> + + <div class="col-md-10 col-md-offset-2"> + <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>{{:: 'assign.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>{{:: 'client.assigned-roles.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>{{:: 'client.effective-roles.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 |