lemonldap-ng/lemonldap-ng-manager/site/static/forms/ruleContainer.html

40 lines
1.4 KiB
HTML
Raw Normal View History

<div class="panel panel-default">
<div class="panel panel-heading">
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3>
</div>
<div class="panel panel-body">
<table class="table">
<tbody class="input-group">
<tr>
<th width="20%" trspan="comment"/>
<th width="30%" trspan="regexps"/>
<th width="70%" trspan="rules"/>
</tr>
<tr ng-repeat="s in currentNode.nodes">
<td ng-if="s.re!='default'">
<input class="form-control" ng-model="s.comment" ng-change="changeRuleTitle(s)"/>
</td>
<td ng-if="s.re!='default'">
<input class="form-control" ng-model="s.re" ng-change="changeRuleTitle(s)"/>
</td>
<td ng-if="s.re=='default'" colspan=2 style="text-align:right;font-style:italic;">
<h4><span trspan="defaultRule"/> :</h4>
</td>
<td>
<input class="form-control" ng-model="s.data"/>
</td>
<td>
<span ng-if="s.re!='default'" class="link glyphicon glyphicon-minus-sign" ng-click="del(currentNode.nodes,$index)"/>
<span ng-if="$last" class="link glyphicon glyphicon-plus-sign" ng-click="menuClick({title:'newRule'})"/>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
buttons=[{
'title': 'newRule',
}];
</script>