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.3 KiB

  1. <div class="row">
  2. <div class="col-md-12">
  3. <div class="panel">
  4. <div class="panel-heading c_deepPurpleG300to500">
  5. <h3 class="panel-title">Last Tx with amount</h3>
  6. </div>
  7. <div class="panel-body">
  8. <table class="table table-hover">
  9. <thead>
  10. <tr>
  11. <th>BlockHeight</th>
  12. <th>Txid</th>
  13. <th>Input</th>
  14. <th>Output</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr ng-repeat="tx in txs">
  19. <td style="max-width:20px; overflow:hidden;">
  20. <a ng-href="#!/block/{{tx.blockheight}}" class="list-group-item-text">
  21. {{tx.blockheight}}
  22. </a>
  23. </td>
  24. <td style="max-width:20px; overflow:hidden;">
  25. <a ng-href="#!/address/{{tx.from}}" class="list-group-item-text">
  26. {{tx.txid}}
  27. </a>
  28. </td>
  29. <td style="max-width:20px; overflow:hidden;">
  30. <table><tbody><tr ng-repeat="vin in tx.vin"><td>
  31. <a ng-href="#!/address/{{vin.address}}" class="list-group-item-text">
  32. {{vin.address}}
  33. </a>
  34. :{{vin.amount}}
  35. </td></tr></tbody></table>
  36. </td>
  37. <td style="max-width:20px; overflow:hidden;">
  38. <table><tbody><tr ng-repeat="vout in tx.vout"><td>
  39. <a ng-href="#!/address/{{vout.address}}" class="list-group-item-text">
  40. {{vout.address}}
  41. </a>
  42. :{{vout.value}}
  43. </td></tr></tbody></table>
  44. </td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. <ul class="pager">
  49. <li><a class="withripple" ng-click="getPrev()">Previous</a></li>
  50. Current page: {{page}}
  51. <li><a class="withripple" ng-click="getNext()">Next</a></li>
  52. </ul>
  53. </div>
  54. </div>
  55. </div>
  56. </div>