role-mappings.html

103 lines | 6.09 kB Blame History Raw Download
<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</a></li>
        <li>{{user.username}}</li>
    </ol>

    <h1>{{user.username|capitalize}}</h1>

    <kc-tabs-user></kc-tabs-user>

    <form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageUsers">
        <div class="form-group">
            <label class="col-md-2 control-label" class="control-label">Realm Roles</label>

            <div class="col-md-10">
                <div class="row">
                    <div class="col-md-3">
                        <label class="control-label" for="available">Available Roles</label>
                        <select id="available" class="form-control" multiple size="5"
                                ng-multiple="true"
                                ng-model="selectedRealmRoles"
                                ng-options="r.name for r in realmRoles">
                        </select>
                        <button class="btn btn-default" type="submit" ng-click="addRealmRole()" tooltip="Assign role" tooltip-placement="right">
                            Add selected <i class="fa fa-angle-right"></i>
                        </button>
                        <kc-tooltip>Realm roles that can be assigned to the user.</kc-tooltip>
                    </div>
                    <div class="col-md-3">
                        <label class="control-label" for="assigned">Assigned Roles</label>
                        <kc-tooltip>Realm roles mapped to the user</kc-tooltip>
                        <select id="assigned" class="form-control" multiple size=5
                                ng-multiple="true"
                                ng-model="selectedRealmMappings"
                                ng-options="r.name for r in realmMappings">
                        </select>
                        <button class="btn btn-default" type="submit" ng-click="deleteRealmRole()" tooltip="Unassign role" tooltip-placement="left">
                            <i class="fa fa-angle-double-left"></i> Remove selected
                        </button>
                    </div>
                    <div class="col-md-3">
                        <label class="control-label" for="realm-composite">Effective Roles</label>
                        <kc-tooltip>All realm role mappings.  Some roles here might be inherited from a mapped composite role.</kc-tooltip>
                        <select id="realm-composite" class="form-control" multiple size=5
                                ng-disabled="true"
                                ng-model="dummymodel"
                                ng-options="r.name for r in realmComposite">
                        </select>
                    </div>
                </div>
            </div>
        </div>

        <div class="form-group">
                <label class="col-md-2 control-label" class="control-label">
                    <span>Client Roles</span>
                    <select class="form-control" id="clients" name="clients" ng-change="changeClient()" ng-model="client" ng-options="a.clientId for a in clients" ng-disabled="false"></select>
                </label>
                <div class="col-md-10">
                    <div class="row" data-ng-hide="client">
                        <div class="col-md-4"><span class="text-muted">Select client to view roles for client</span></div>
                    </div>
                    <div class="row" data-ng-show="client">
                        <div class="col-md-3">
                            <label class="control-label" for="available-client">Available Roles</label>
                            <kc-tooltip>Assignable roles from this client.</kc-tooltip>
                            <select id="available-client" class="form-control" multiple size="5"
                                    ng-multiple="true"
                                    ng-model="selectedClientRoles"
                                    ng-options="r.name for r in clientRoles">
                            </select>
                            <button class="btn btn-default" type="submit" ng-click="addClientRole()" tooltip="Assign role" tooltip-placement="right">
                                Add selected <i class="fa fa-angle-double-right"></i>
                            </button>
                        </div>
                        <div class="col-md-3">
                            <label class="control-label" for="assigned-client">Assigned Roles</label>
                            <kc-tooltip>Role mappings for this client.</kc-tooltip>
                            <select id="assigned-client" class="form-control" multiple size=5
                                    ng-multiple="true"
                                    ng-model="selectedClientMappings"
                                    ng-options="r.name for r in clientMappings">
                            </select>
                            <button class="btn btn-default" type="submit" ng-click="deleteClientRole()" tooltip="Unassign role" tooltip-placement="left">
                                <i class="fa fa-angle-double-left"></i> Remove selected
                            </button>
                        </div>
                        <div class="col-md-3">
                            <label class="control-label" for="client-composite">Effective Roles <span tooltip-placement="right" tooltip="Role mappings for this client.  Some roles here might be inherited from a mapped composite role." class="fa fa-info-circle"></span></label>
                            <select id="client-composite" class="form-control" multiple size=5
                                    ng-disabled="true"
                                    ng-model="dummymodel"
                                    ng-options="r.name for r in clientComposite">
                            </select>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </form>
</div>

<kc-menu></kc-menu>