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

28 lines
1.1 KiB
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">
2017-03-24 16:03:40 +01:00
<div class="input-group-solid" role="radiogroup">
<label class="radio-inline">
<input id="trOn" type="radio" ng-value="1" ng-model="currentNode.data" role="radio" aria-labelledby="ltrOn">
2017-03-24 16:03:40 +01:00
<span id="ltrOn" for="trOn" trspan="on"></span>
</label>
<label class="radio-inline">
<input id="trOff" type="radio" ng-value="0" ng-model="currentNode.data" role="radio" aria-labelledby="ltrOff">
2017-03-24 16:03:40 +01:00
<span id="ltrOff" for="trOff" trspan="off"></span>
</label>
<label class="radio-inline">
<input id="trDefault" type="radio" ng-value="-1" ng-model="currentNode.data" ng-checked="currentNode.data!==1&&currentNode.data!=='1'&&currentNode.data!==0&&currentNode.data!=='0'" role="radio" aria-labelledby="ltrDefault">
2017-03-24 16:03:40 +01:00
<span id="ltrDefault" for="trDefault" trspan="default"></span>
</label>
</div>
</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>