lemonldap-ng/lemonldap-ng-manager/site/static/forms/trool.html

27 lines
923 B
HTML
Raw Normal View History

<div class="panel panel-default">
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="trOn" type="radio" value="1" name="bope" ng-model="currentNode.data">
<span trspan="on"/>
</label>
<label class="radio-inline">
<input id="trOff" type="radio" value="0" name="bope" ng-model="currentNode.data">
<span trspan="off"/>
</label>
<label class="radio-inline">
<input id="trDefault" type="radio" value="-1" name="bope" ng-model="currentNode.data" ng-checked="currentNode.data!==1&&currentNode.data!=='1'&&currentNode.data!==0&&currentNode.data!=='0'">
<span trspan="default"/>
</label>
</div>
</div>
</div>
<script type="text/javascript">
buttons=[{
"title": "cancel"
}];
</script>