aboutsummaryrefslogtreecommitdiff
blob: e555aafb42ec46e889f96bd3fa17b301243faddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
    <h1 data-ng-show="model.create">{{:: 'create-protocol-mapper' | translate}}</h1>
    <h1 data-ng-hide="model.create">{{model.mapper.name|capitalize}}<i class="pficon pficon-delete clickable" data-ng-show="!model.create && access.manageClients"
    	data-ng-hide="model.changed" data-ng-click="remove()"></i></h1>

    <form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageClients">

        <fieldset>
            <div class="form-group clearfix">
                <label class="col-md-2 control-label" for="protocol">{{:: 'protocol' | translate}}</label>
                <div class="col-md-6">
                    <input class="form-control" id="protocol" type="text" ng-model="model.protocol" readonly>
                </div>
                <kc-tooltip>{{:: 'protocol.tooltip' | translate}}</kc-tooltip>
            </div>
            <div class="form-group clearfix" data-ng-show="!model.create">
                <label class="col-md-2 control-label" for="mapperId">{{:: 'id' | translate}} </label>
                <div class="col-md-6">
                    <input class="form-control" id="mapperId" type="text" ng-model="model.mapper.id" readonly>
                </div>
            </div>
            <div class="form-group clearfix">
                <label class="col-md-2 control-label" for="name">{{:: 'name' | translate}}</label>
                <div class="col-md-6">
                    <input class="form-control" id="name" type="text" ng-model="model.mapper.name" data-ng-readonly="!model.create" required>
                </div>
                <kc-tooltip>{{:: 'mapper.name.tooltip' | translate}}</kc-tooltip>
            </div>
            <div class="form-group" data-ng-show="model.create">
                <label class="col-md-2 control-label" for="mapperTypeCreate">{{:: 'mapper-type' | translate}}</label>
                <div class="col-md-6">
                    <div>
                        <select class="form-control" id="mapperTypeCreate"
                                ng-model="model.mapperType"
                                ng-options="mapperType.name for mapperType in model.mapperTypes"
                                required>
                        </select>
                    </div>
                </div>
                <kc-tooltip>{{model.mapperType.helpText}}</kc-tooltip>
            </div>
            <div class="form-group clearfix" data-ng-hide="model.create">
                <label class="col-md-2 control-label" for="mapperType">{{:: 'mapper-type' | translate}}</label>
                <div class="col-md-6">
                    <input class="form-control" id="mapperType" type="text" ng-model="model.mapperType.name" data-ng-readonly="true">
                </div>
                <kc-tooltip>{{model.mapperType.helpText}}</kc-tooltip>
            </div>
            <kc-provider-config config="model.mapper.config" properties="model.mapperType.properties" realm="model.realm" clients="clients"></kc-provider-config>
        </fieldset>

        <div class="form-group">
            <div class="col-md-10 col-md-offset-2" data-ng-show="model.create && access.manageClients">
                <button kc-save>{{:: 'save' | translate}}</button>
                <button kc-cancel data-ng-click="cancel()">{{:: 'cancel' | translate}}</button>
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-10 col-md-offset-2" data-ng-show="!model.create && access.manageClients">
                <button kc-save  data-ng-disabled="!model.changed">{{:: 'save' | translate}}</button>
                <button kc-reset data-ng-disabled="!model.changed">{{:: 'cancel' | translate}}</button>
            </div>
        </div>
    </form>