node-info.html 622 B

12345678910111213141516171819202122232425262728
  1. <div class="ed-p-node-info">
  2. <div class="modal-header">
  3. <h4 class="modal-title">Node Details</h4>
  4. </div>
  5. <div class="modal-body">
  6. <table id="ed-m-property-table" class="table">
  7. <thead>
  8. <tr>
  9. <th>property</th>
  10. <th>value</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <tr ng-repeat="key in objectKeys | orderBy:identityFn">
  15. <td>{{key}}</td>
  16. <td>{{node[key]}}</td>
  17. </tr>
  18. </tbody>
  19. </table>
  20. </div>
  21. <div class="modal-footer">
  22. <button type="button" ng-click="close()" class="btn btn-primary">Close</button>
  23. </div>
  24. </div>