etcd/mod/dashboard/app/page/browser/node-info.html
2014-04-14 12:13:04 -07:00

29 lines
622 B
HTML

<div class="ed-p-node-info">
<div class="modal-header">
<h4 class="modal-title">Node Details</h4>
</div>
<div class="modal-body">
<table id="ed-m-property-table" class="table">
<thead>
<tr>
<th>property</th>
<th>value</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="key in objectKeys | orderBy:identityFn">
<td>{{key}}</td>
<td>{{node[key]}}</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" ng-click="close()" class="btn btn-primary">Close</button>
</div>
</div>