kong-dashboard
Version:
Web UI for managing Kong gateway
22 lines (21 loc) • 645 B
HTML
<table class="bordered" ng-show="vm.resources.length > 0">
<tr>
<th>Target</th>
<th>Weight</th>
<th>Created</th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="resource in vm.resources">
<td ng-bind-html="resource.target | objectProperty"></td>
<td ng-bind-html="resource.weight | objectProperty"></td>
<td ng-bind-html="resource.created_at | date"></td>
<td class="right">
<a class="btn-floating waves-effect waves-light red modal-trigger" ng-click="vm.showDeleteModal(resource.target, resource.id)">
<i class="material-icons">delete</i>
</a>
</td>
</tr>
</tbody>
</table>