You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
633 B

  1. <div class="container">
  2. <div class="row">
  3. <div class="col-md-3">
  4. </div>
  5. <div class="col-md-6">
  6. <div class="card">
  7. {{peerslist.PeerID}}
  8. <div class="card-body" style="max-height: 500px; overflow-y:scroll;">
  9. <div ng-repeat="peer in peerslist.peerslist">
  10. <b>{{peer.id}}</b> - {{peer.role}}
  11. <br>
  12. - {{peer.ip}}:{{peer.port}}, {{peer.restport}}
  13. <hr>
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </div>