lemonldap-ng/lemonldap-ng-manager/site/static/forms/keyText.html
2015-10-23 14:03:46 +00:00

26 lines
654 B
HTML

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3>
</div>
<table class="table">
<tr>
<th><span trspan="hashkey"/></th>
<td><input id="hashkeyinput" class="form-control" ng-model="currentNode.title"/>
</tr>
<tr>
<th><span trspan="value"/></th>
<td><input id="hashvalueinput" class="form-control" ng-model="currentNode.data"/>
</tr>
</table>
</div>
<script type="text/javascript">
buttons=[{
'title': 'newEntry',
'action': 'newHashEntry',
'icon': 'plus-sign'
},{
'title': 'deleteEntry',
'icon': 'minus-sign'
}];
</script>