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

21 lines
638 B
HTML
Raw Normal View History

<div class="panel panel-default">
2015-07-09 17:38:35 +02:00
<div class="panel-heading">
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3>
</div>
2015-07-24 15:34:29 +02:00
<table class="table table-striped">
<tbody>
<tr ng-repeat="mod in currentNode.nodes">
2015-07-24 15:34:29 +02:00
<th>{{translate(mod.id)}}</th>
<td>
<select class="form-control" id="selectform" ng-model="mod.data" ng-change="mod.onChange()">
<option ng-repeat="item in mod.select" ng-selected="item.k==mod.data" value="{{item.k}}" trspan="{{item.v}}"></option>
</select>
</td>
</tr>
</tbody>
</table>
</div>
2016-02-16 07:21:40 +01:00
<script type="text/menu">
[]
</script>