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

27 lines
838 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" trspan="samlSPMetaDataNodes"></h3>
</div>
2015-10-23 17:18:47 +02:00
<table class="table table-striped">
<thead>
2016-01-13 10:59:01 +01:00
<tr><th trspan="samlSPName"></th><th></th></tr>
2015-10-23 17:18:47 +02:00
</thead>
<tbody>
<tr ng-repeat="s in currentNode.nodes">
<td><input class="form-control" ng-model="s.title"/></td>
<td>
<span 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:'addSPSamlPartner',action:'addSamlSP'})"/>
</td>
</tr>
</tbody>
</table>
</div>
2016-02-16 07:21:40 +01:00
<script type="text/menu">
[{
"title": "addSPSamlPartner",
"action": "addSamlSP",
"icon": "plus-sign"
2016-02-16 07:21:40 +01:00
}]
</script>