lemonldap-ng/lemonldap-ng-manager/site/htdocs/static/forms/boolOrExpr.html

31 lines
1.2 KiB
HTML
Raw Normal View History

<div class="panel panel-default" style="position:relative;">
2015-07-09 17:38:35 +02:00
<div class="panel-heading">
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3>
</div>
2015-07-09 17:38:35 +02:00
<div class="panel-body">
<div class="input-group-solid">
<label class="radio-inline">
<input id="bopeOn" type="radio" value="1" name="bope" ng-model="currentNode.data">
<span trspan="on"></span>
</label>
<label class="radio-inline">
<input id="bopeOff" type="radio" value="0" name="bope" ng-model="currentNode.data">
<span trspan="off"></span>
</label>
<label class="radio-inline">
<input id="bopeExpr" type="radio" value="-1" name="bope" ng-click="currentNode.data=''" ng-checked="currentNode.data!==0&&currentNode.data!=='0'&&currentNode.data!==1&&currentNode.data!=='1'">
<span trspan="specialRule"></span>
</label>
</div>
</div>
2015-07-09 17:38:35 +02:00
<div class="panel-body input-group" style="width:100%;" ng-if="currentNode.data!==0&&currentNode.data!=='0'&&currentNode.data!==1&&currentNode.data!=='1'">
<textarea id="bopeValue" class="form-control" rows="2" ng-model="currentNode.data"/>
</div>
</div>
2016-02-16 07:21:40 +01:00
<script type="text/menu">
[{
"title": "cancel",
"icon": "remove"
2016-02-16 07:21:40 +01:00
}]
</script>