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.

176 lines
6.1 KiB

  1. <div class="row">
  2. <div class="col-sm-4">
  3. <div class="panel">
  4. <div class="panel-body">
  5. <h4>{{stats.realblockcount}}/{{stats.blockcount}} Blocks with content</h4>
  6. <div class="progress" style="margin:0;">
  7. <div class="progress-bar c_deepPurpleG300to500" ng-style="blockProgress"></div>
  8. </div>
  9. </div>
  10. </div>
  11. </div>
  12. <div class="col-sm-2">
  13. <div class="panel">
  14. <div class="panel-body">
  15. <h4>{{stats.txcount}} Txs</h4>
  16. <div class="progress" style="margin:0;">
  17. <div class="progress-bar c_deepPurpleG300to500" ng-style="txProgress"></div>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="col-sm-2">
  23. <div class="panel">
  24. <div class="panel-body">
  25. <h4>{{stats.addrcount}} Addr</h4>
  26. <div class="progress" style="margin:0;">
  27. <div class="progress-bar c_deepPurpleG300to500" ng-style="txProgress"></div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="col-sm-2">
  33. <div class="panel">
  34. <div class="panel-body">
  35. <round-progress
  36. max="max"
  37. current="current"
  38. color="#9575CD"
  39. bgcolor="#eaeaea"
  40. radius="100"
  41. stroke="20"
  42. semi="true"
  43. rounded="false"
  44. clockwise="true"
  45. responsive="true"
  46. duration="800"
  47. animation="easeInOutQuart"
  48. animation-delay="0">{{current}}/{{max}}</round-progress>
  49. <div class="o_textRoundProgress">{{ current }}/{{ max }}</div>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="col-sm-2">
  54. <div class="panel">
  55. <div class="panel-body">
  56. <round-progress
  57. max="max"
  58. current="20"
  59. color="#673AB7"
  60. bgcolor="#eaeaea"
  61. radius="100"
  62. stroke="25"
  63. semi="true"
  64. rounded="false"
  65. clockwise="true"
  66. responsive="true"
  67. duration="800"
  68. animation="easeInOutQuart"
  69. animation-delay="0">{{current}}/{{max}}</round-progress>
  70. <div class="o_textRoundProgress">25%</div>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. <div class="row">
  76. <div class="col-sm-4">
  77. <div class="panel">
  78. <div class="panel-heading c_deepPurpleG300to500">
  79. <h3 class="panel-title">Last 24 hours Tx/Hour
  80. <a ng-href="#!/dateAnalysis" class="pull-right c_deepPurpleG300to500">View more</a></h3>
  81. </div>
  82. <div class="panel-body">
  83. <canvas id="line" class="chart chart-line" chart-data="last24hour.data" chart-labels="last24hour.labels">
  84. </canvas>
  85. </div>
  86. </div>
  87. <div class="panel">
  88. <div class="panel-heading c_deepPurpleG300to500">
  89. <h3 class="panel-title">Tx/Day Last 7 Days</h3>
  90. </div>
  91. <div class="panel-body">
  92. <canvas id="horizontal-bar" class="chart chart-horizontal-bar" chart-data="last7day.data" chart-labels="last7day.labels" chart-series="last7day.series">
  93. </canvas>
  94. </div>
  95. </div>
  96. </div>
  97. <div class="col-sm-8">
  98. <div class="panel">
  99. <div class="panel-heading c_deepPurpleG300to500">
  100. <h3 class="panel-title">Last 7 days Tx/Hour
  101. <a ng-href="#!/dateAnalysis" class="pull-right c_deepPurpleG300to500">View more</a></h3>
  102. </div>
  103. <div class="panel-body">
  104. <canvas id="line" class="chart chart-line" chart-data="last7dayhour.data" chart-labels="last7dayhour.labels" chart-series="last7dayhour.series">
  105. </canvas>
  106. </div>
  107. </div>
  108. </div>
  109. </div>
  110. <div class="row">
  111. <div class="col-sm-4">
  112. <div class="panel">
  113. <div class="panel-heading c_deepPurpleG300to500">
  114. <h3 class="panel-title">Last addresses used</h3>
  115. </div>
  116. <div class="panel-body" style="max-height: 250px;overflow-y: scroll;">
  117. <div class="list-group-item" ng-repeat="address in addresses">
  118. <div class="row-content">
  119. <a ng-href="#!/address/{{address.hash}}" class="list-group-item-text">{{address.hash}}</a>
  120. </div>
  121. </div>
  122. </div>
  123. </div>
  124. </div>
  125. <div class="col-md-8">
  126. <div class="panel">
  127. <div class="panel-heading c_deepPurpleG300to500">
  128. <h3 class="panel-title">Last Tx with amount</h3>
  129. </div>
  130. <div class="panel-body" style="max-height: 250px;overflow-y: scroll;">
  131. <table class="table table-hover">
  132. <thead>
  133. <tr>
  134. <th>BlockHeight</th>
  135. <th>Txid</th>
  136. <th>Input</th>
  137. <th>Output</th>
  138. </tr>
  139. </thead>
  140. <tbody>
  141. <tr ng-repeat="tx in txs">
  142. <td style="max-width:20px; overflow:hidden;">
  143. <a ng-href="#!/block/{{tx.blockheight}}" class="list-group-item-text">
  144. {{tx.blockheight}}
  145. </a>
  146. </td>
  147. <td style="max-width:20px; overflow:hidden;">
  148. <a ng-href="#!/address/{{tx.from}}" class="list-group-item-text">
  149. {{tx.txid}}
  150. </a>
  151. </td>
  152. <td style="max-width:20px; overflow:hidden;">
  153. <table><tbody><tr ng-repeat="vin in tx.vin"><td>
  154. <a ng-href="#!/address/{{vin.address}}" class="list-group-item-text">
  155. {{vin.address}}
  156. </a>
  157. :{{vin.amount}}
  158. </td></tr></tbody></table>
  159. </td>
  160. <td style="max-width:20px; overflow:hidden;">
  161. <table><tbody><tr ng-repeat="vout in tx.vout"><td>
  162. <a ng-href="#!/address/{{vout.address}}" class="list-group-item-text">
  163. {{vout.address}}
  164. </a>
  165. :{{vout.value}}
  166. </td></tr></tbody></table>
  167. </td>
  168. </tr>
  169. </tbody>
  170. </table>
  171. </div>
  172. </div>
  173. </div>
  174. </div>