Add issuerDBGet parameters (#1025)
parent
98139efb1e
commit
e370416bc1
@ -0,0 +1,39 @@ |
||||
<!-- |
||||
Special container to show hash in hash |
||||
--> |
||||
<div class="panel panel-default"> |
||||
<div class="panel-heading"> |
||||
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3> |
||||
</div> |
||||
<div class="panel-body" ng-repeat="(n,h) in currentNode.nodes"> |
||||
<div class="input-group"> |
||||
<span class="input-group-addon" trspan="hostname"></span> |
||||
<input type="text" class="form-control"/> |
||||
</div> |
||||
<table class="table table-striped"> |
||||
<thead> |
||||
<tr><th width="40%" trspan="keys"></th><th width="40%" trspan="values"></th><th></th></tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr ng-repeat="(k,v) in h"> |
||||
<td><input class="form-control" ng-model="k"/></td> |
||||
<td><input class="form-control" ng-model="v"/></td> |
||||
<td><span class="link text-success glyphicon glyphicon-plus-sign" ng-click="h.push({'new':'new'})"/></td> |
||||
<td> |
||||
<span class="link text-danger glyphicon glyphicon-minus-sign" ng-click="delete h[k]"/> |
||||
<span ng-if="$last" class="link text-success glyphicon glyphicon-plus-sign" ng-click="h.push({'new':'new'})"/> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
<script type="text/menu"> |
||||
[{ |
||||
'title': 'newHost', |
||||
'action': function(cn,scope){ |
||||
cn.push({"newHost":{"new":"value"}}); |
||||
}, |
||||
'icon': 'plus-sign' |
||||
}] |
||||
</script> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue