lemonldap-ng/lemonldap-ng-manager/site/static/forms/menuApp.html
2015-07-13 17:01:03 +00:00

58 lines
1.7 KiB
HTML

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" trspan="application"/>
</div>
<table class="table table-striped">
<tr>
<th><span trspan="name"/></th>
<td><input id="iname" class="form-control" ng-model="currentNode.title"/></td>
</tr>
<tr>
<th><span trspan="description"/></th>
<td><input id="idesc" class="form-control" ng-model="currentNode.data.description"/></td>
</tr>
<tr>
<th><span trspan="uri"/></th>
<td><input id="iuri" class="form-control" ng-model="currentNode.data.uri"/></td>
</tr>
<tr>
<th><span trspan="logo"/></th>
<td><input id="ilogo" class="form-control" ng-model="currentNode.data.logo"/></td>
</tr>
<tr>
<th><span trspan="applicationDisplay"/></th>
<td>
<div class="input-group-solid">
<label class="radio-inline">
<input id="iOn" type="radio" value="on" ng-model="currentNode.data.display" />
<span trspan="enabled"/>
</label>
<label class="radio-inline">
<input id="iOff" type="radio" value="off" ng-model="currentNode.data.display" />
<span trspan="disabled">
</label>
<label class="radio-inline">
<input id="iAuto" type="radio" value="auto" ng-model="currentNode.data.display" />
<span trspan="auto">
</label>
</div>
</td>
</tr>
</table>
</div>
<script type="text/javascript">
buttons=[{
"title": "up",
"icon": "arrow-up"
},{
"title": "down",
"icon": "arrow-down"
},{
"title": "deleteEntry",
"icon": "minus-sign"
},{
"title": "newApp",
"icon": "plus-sign"
}];
</script>