lemonldap-ng/lemonldap-ng-manager/site/htdocs/static/forms/cmbModule.html
2020-07-28 14:17:33 +02:00

59 lines
1.9 KiB
HTML

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{currentNode.title}}</h3>
</div>
<table class="table table-striped">
<thead>
<tr>
<th width="25%" trspan="name"></th>
<th width="25%" trspan="type"></th>
<th width="35%" trspan="use"></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input class="form-control" ng-model="currentNode.title" />
</td>
<td>
<select class="form-control" ng-model="currentNode.data.type" ng-change="execFilters(_findScopeByKey('authParams'))">
<option ng-repeat="item in _findContainer().select" ng-selected="item.k===currentNode.data.type" value="{{item.k}}">{{item.v}}</option>
</select>
</td>
<td>
<select class="form-control" ng-model="currentNode.data.for">
<option value="0" ng-selected="currentNode.data.for==0" trspan="authAndUserdb"></option>
<option value="1" ng-selected="currentNode.data.for==1" trspan="authOnly"></option>
<option value="2" ng-selected="currentNode.data.for==2" trspan="userdbOnly"></option>
</select>
</td>
</tr>
</tbody>
</table>
<h4 trspan="overPrm"></h4>
<table class="table">
<tr ng-repeat="t in currentNode.data.over">
<td>
<input class="form-control" ng-model="t[0]" />
</td>
<td>
<input class="form-control" ng-model="t[1]" />
</td>
<td>
<span class="link text-danger glyphicon glyphicon-minus-sign" ng-click="del(currentNode.data.over,$index)"></span>
<span ng-if="$last" class="link text-success glyphicon glyphicon-plus-sign" ng-click="menuClick({title:'newCmbOver'})"></span>
</td>
</tr>
</table>
</div>
<script type="text/menu">
[{
"title": "newCmbOver",
"icon": "plus-sign"
},{
"title": "deleteEntry",
"icon": "minus-sign"
}]
</script>