aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'admin/resources/partials/client-scopes-realm-default.html')
-rw-r--r--admin/resources/partials/client-scopes-realm-default.html99
1 files changed, 99 insertions, 0 deletions
diff --git a/admin/resources/partials/client-scopes-realm-default.html b/admin/resources/partials/client-scopes-realm-default.html
new file mode 100644
index 0000000..e30570a
--- /dev/null
+++ b/admin/resources/partials/client-scopes-realm-default.html
@@ -0,0 +1,99 @@
+<div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
+ <h1>
+ <span>{{:: 'default-client-scopes' | translate}}</span>
+ <kc-tooltip>{{:: 'default-client-scopes.tooltip' | translate}}</kc-tooltip>
+ </h1>
+
+ <ul class="nav nav-tabs">
+ <li>
+ <a href="#/realms/{{realm.realm}}/client-scopes">{{:: 'client-scopes' | translate}}</a>
+ <kc-tooltip>{{:: 'client-scopes.tooltip' | translate}}</kc-tooltip>
+ </li>
+ <li class="active">
+ <a href="#/realms/{{realm.realm}}/default-client-scopes">{{:: 'default-client-scopes' | translate}}</a>
+ <kc-tooltip>{{:: 'default-client-scopes.tooltip' | translate}}</kc-tooltip>
+ </li>
+ </ul>
+
+ <form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageClients">
+ <div class="form-group">
+ <label class="col-md-2 control-label" class="control-label">{{:: 'default-client-scopes.default' | translate}}</label>
+ <kc-tooltip>{{:: 'default-client-scopes.default.tooltip' | translate}}</kc-tooltip>
+
+ <div class="col-md-10">
+ <div class="row">
+ <div class="col-md-4">
+ <label class="control-label" for="available">{{:: 'default-client-scopes.default.available' | translate}}</label>
+ <kc-tooltip>{{:: 'default-client-scopes.default.available.tooltip' | translate}}</kc-tooltip>
+ <select id="available" class="form-control overflow-select" multiple size="5"
+ ng-multiple="true"
+ ng-model="selectedDefaultClientScopes">
+ <option ng-repeat="r in availableClientScopes | orderBy:'name'" value="{{r}}" title="{{r.name}}">
+ {{r.name}}
+ </option>
+ </select>
+ <button ng-disabled="selectedDefaultClientScopes.length == 0" class="btn btn-default" type="submit" ng-click="addDefaultClientScope()">
+ {{:: 'add-selected' | translate}} <i class="fa fa-angle-double-right"></i>
+ </button>
+ </div>
+ <div class="col-md-4">
+ <label class="control-label" for="assigned">{{:: 'default-client-scopes.default.assigned' | translate}}</label>
+ <kc-tooltip>{{:: 'default-client-scopes.default.assigned.tooltip' | translate}}</kc-tooltip>
+ <select id="assigned" class="form-control overflow-select" multiple size=5
+ ng-multiple="true"
+ ng-model="selectedDefDefaultClientScopes">
+ <option ng-repeat="r in realmDefaultClientScopes | orderBy:'name'" value="{{r}}" title="{{r.name}}">
+ {{r.name}}
+ </option>
+ </select>
+ <button ng-disabled="selectedDefDefaultClientScopes.length == 0" class="btn btn-default" type="submit" ng-click="deleteDefaultClientScope()">
+ <i class="fa fa-angle-double-left"></i> {{:: 'remove-selected' | translate}}
+ </button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-md-2 control-label" class="control-label">{{:: 'default-client-scopes.optional' | translate}}</label>
+ <kc-tooltip>{{:: 'default-client-scopes.optional.tooltip' | translate}}</kc-tooltip>
+
+ <div class="col-md-10">
+ <div class="row">
+ <div class="col-md-4">
+ <label class="control-label" for="available-opt">{{:: 'default-client-scopes.optional.available' | translate}}</label>
+ <kc-tooltip>{{:: 'default-client-scopes.optional.available.tooltip' | translate}}</kc-tooltip>
+ <select id="available-opt" class="form-control overflow-select" multiple size="5"
+ ng-multiple="true"
+ ng-model="selectedOptionalClientScopes">
+ <option ng-repeat="r in availableClientScopes | orderBy:'name'" value="{{r}}" title="{{r.name}}">
+ {{r.name}}
+ </option>
+ </select>
+ <button ng-disabled="selectedOptionalClientScopes.length == 0" class="btn btn-default" type="submit" ng-click="addOptionalClientScope()">
+ {{:: 'add-selected' | translate}} <i class="fa fa-angle-double-right"></i>
+ </button>
+ </div>
+ <div class="col-md-4">
+ <label class="control-label" for="assigned-opt">{{:: 'default-client-scopes.optional.assigned' | translate}}</label>
+ <kc-tooltip>{{:: 'default-client-scopes.optional.assigned.tooltip' | translate}}</kc-tooltip>
+ <select id="assigned-opt" class="form-control overflow-select" multiple size=5
+ ng-multiple="true"
+ ng-model="selectedDefOptionalClientScopes">
+ <option ng-repeat="r in realmOptionalClientScopes | orderBy:'name'" value="{{r}}" title="{{r.name}}">
+ {{r.name}}
+ </option>
+ </select>
+ <button ng-disabled="selectedDefOptionalClientScopes.length == 0" class="btn btn-default" type="submit" ng-click="deleteOptionalClientScope()">
+ <i class="fa fa-angle-double-left"></i> {{:: 'remove-selected' | translate}}
+ </button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </form>
+
+</div>
+
+<kc-menu></kc-menu> \ No newline at end of file