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.

87 lines
3.6 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 class="panel">
  12. <div class="panel-heading c_deepPurpleG300to500">
  13. <h3 class="panel-title">Address uses
  14. </div>
  15. <div class="panel-body">
  16. <canvas id="line" class="chart chart-line" chart-data="addresstimechart.data" chart-labels="addresstimechart.labels">
  17. </canvas>
  18. </div>
  19. </div>
  20. </div>
  21. <div class="col-sm-8">
  22. <div class="panel">
  23. <div class="panel-heading c_deepPurpleG300to500">
  24. <h3 class="panel-title">Blocks where address appears</h3>
  25. </div>
  26. <div class="panel-body" style="max-height: 300px;overflow-y: scroll;">
  27. <div class="list-group">
  28. <a ng-href="#!/block/{{block.height}}" class="list-group-item-text" ng-repeat="block in address.blocks">
  29. Block Height: {{block.height}}
  30. <br> Hash: {{block.hash}}
  31. <br> {{block.datet}}
  32. <br> Size: {{block.size}} bytes
  33. <hr>
  34. </a>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. <div class="row">
  41. <div class="col-sm-12">
  42. <div class="panel">
  43. <div class="panel-heading c_deepPurpleG300to500">
  44. <h3 class="panel-title">Tx where address appears</h3>
  45. </div>
  46. <div class="panel-body">
  47. <table class="table table-hover">
  48. <thead>
  49. <tr>
  50. <th>Txid</th>
  51. <th>Input</th>
  52. <th>Output</th>
  53. </tr>
  54. </thead>
  55. <tbody>
  56. <tr ng-repeat="tx in address.txs">
  57. <td style="max-width:20px; overflow:hidden;">
  58. <a ng-href="#!/tx/{{tx.txid}}" class="list-group-item-text">
  59. {{tx.txid}}
  60. </a>
  61. <br>
  62. {{tx.datet}}
  63. </td>
  64. <td style="max-width:20px; overflow:hidden;">
  65. <table><tbody><tr ng-repeat="vin in tx.vin"><td>
  66. <a ng-href="#!/address/{{vin.address}}" class="list-group-item-text">
  67. {{vin.address}}
  68. </a>
  69. :{{vin.amount}}
  70. </td></tr></tbody></table>
  71. </td>
  72. <td style="max-width:20px; overflow:hidden;">
  73. <table><tbody><tr ng-repeat="vout in tx.vout"><td>
  74. <a ng-href="#!/address/{{vout.address}}" class="list-group-item-text">
  75. {{vout.address}}
  76. </a>
  77. :{{vout.value}}
  78. </td></tr></tbody></table>
  79. </td>
  80. </tr>
  81. </tbody>
  82. </table>
  83. </div>
  84. </div>
  85. </div>
  86. </div>