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.

74 lines
2.9 KiB

  1. <div class="row">
  2. <div class="col-sm-4">
  3. <div class="panel">
  4. <div class="panel-heading c_deepPurpleG300to500">
  5. <h3 class="panel-title">{{address.hash}}</h3>
  6. </div>
  7. <div class="panel-body">
  8. {{address.amount}}
  9. </div>
  10. </div>
  11. </div>
  12. <div class="col-sm-8">
  13. <div class="panel">
  14. <div class="panel-heading c_deepPurpleG300to500">
  15. <h3 class="panel-title">Blocks where address appears</h3>
  16. </div>
  17. <div class="panel-body">
  18. <div class="list-group">
  19. <a ng-href="#!/block/{{block.height}}" class="list-group-item-text" ng-repeat="block in address.blocks">
  20. Block Height: {{block.height}}
  21. <br> Hash: {{block.hash}}
  22. <br> {{block.datet}}
  23. <br> Size: {{block.size}} bytes
  24. <br>
  25. </a>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="row">
  32. <div class="col-sm-12">
  33. <div class="panel">
  34. <div class="panel-heading c_deepPurpleG300to500">
  35. <h3 class="panel-title">Tx where address appears</h3>
  36. </div>
  37. <div class="panel-body">
  38. <table class="table table-hover">
  39. <thead>
  40. <tr>
  41. <th>BlockHeight</th>
  42. <th>From</th>
  43. <th>To</th>
  44. <th>Amount</th>
  45. <th></th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. <tr ng-repeat="tx in address.txs">
  50. <td style="max-width:20px; overflow:hidden;">
  51. <a ng-href="#!/block/{{tx.blockheight}}" class="list-group-item-text">
  52. {{tx.blockheight}}
  53. </a>
  54. </td>
  55. <td style="max-width:20px; overflow:hidden;">
  56. <a ng-href="#!/address/{{tx.from}}" class="list-group-item-text">
  57. {{tx.from}}
  58. </a>
  59. </td>
  60. <td style="max-width:20px; overflow:hidden;">
  61. <a ng-href="#!/address/{{tx.to}}" class="list-group-item-text">
  62. {{tx.to}}
  63. </a>
  64. </td>
  65. <td>{{tx.amount}}</td>
  66. <td><a ng-href="#!/tx/{{tx.id}}">View</a></td>
  67. </tr>
  68. </tbody>
  69. </table>
  70. </div>
  71. </div>
  72. </div>
  73. </div>