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

39 lines
1.2 KiB
HTML
Raw Normal View History

2015-12-30 19:32:01 +01:00
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3>
</div>
<table class="table table-striped">
<thead>
<tr>
<th width="20%" trspan="comments"></th>
<th width="30%" trspan="rules"></th>
<th width="50%" trspan="messages"></th>
2015-12-30 19:32:01 +01:00
<th />
</tr>
</thead>
<tbody>
<tr ng-repeat="s in currentNode.nodes">
<td>
<input class="form-control" ng-model="s.comment" ng-change="changeRuleTitle(s)"/>
</td>
<td>
<input class="form-control" ng-model="s.re" ng-change="changeRuleTitle(s)"/>
</td>
<td>
<input class="form-control" ng-model="s.data"/>
</td>
<td>
<span ng-if="s.re!='default'" class="link text-danger glyphicon glyphicon-minus-sign" ng-click="del(currentNode.nodes,$index)"/>
<span ng-if="$last" class="link text-success glyphicon glyphicon-plus-sign" ng-click="menuClick({title:'newRule'})"/>
</td>
</tr>
</tbody>
</table>
</div>
2016-02-16 07:21:40 +01:00
<script type="text/menu">
[{
2017-01-18 17:31:53 +01:00
"title": "newGrantRule",
"icon": "plus-sign"
2016-02-16 07:21:40 +01:00
}]
2015-12-30 19:32:01 +01:00
</script>