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.

56 lines
2.0 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">Blocks where address appears</h3>
  14. </div>
  15. <div class="panel-body" ng-repeat="block in address.blocks">
  16. Block Height: {{block.height}}
  17. <br>
  18. Hash: {{block.Hash}}
  19. <br>
  20. {{block.datet}}
  21. <br>
  22. {{block.Size}}
  23. </div>
  24. </div>
  25. </div>
  26. <div class="col-sm-6">
  27. <div class="panel">
  28. <div class="panel-heading c_deepPurpleG300to500">
  29. <h3 class="panel-title">Tx where address appears</h3>
  30. </div>
  31. <div class="panel-body">
  32. <table class="table table-hover">
  33. <thead>
  34. <tr>
  35. <th>BlockHeight</th>
  36. <th>From</th>
  37. <th>To</th>
  38. <th>Amount</th>
  39. <th></th>
  40. </tr>
  41. </thead>
  42. <tbody>
  43. <tr ng-repeat="tx in address.txs">
  44. <td style="max-width:20px; overflow:hidden;">{{tx.blockheight}}</td>
  45. <td style="max-width:20px; overflow:hidden;">{{tx.from}}</td>
  46. <td style="max-width:20px; overflow:hidden;">{{tx.to}}</td>
  47. <td>{{tx.amount}}</td>
  48. <td><a ng-href="#!/tx/{{tx.id}}">View</a></td>
  49. </tr>
  50. </tbody>
  51. </table>
  52. </div>
  53. </div>
  54. </div>
  55. </div>