mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
29 lines
622 B
HTML
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>
|