|
|
|
@ -77,6 +77,8 @@ block content |
|
|
|
|
i.icon-node(data-toggle="tooltip", data-placement="top", title="Node") |
|
|
|
|
th |
|
|
|
|
i.icon-laptop(data-toggle="tooltip", data-placement="top", title="Node type") |
|
|
|
|
th |
|
|
|
|
i.icon-gas(data-toggle="tooltip", data-placement="top", title="Node latency") |
|
|
|
|
th |
|
|
|
|
i.icon-mining(data-toggle="tooltip", data-placement="top", title="Is mining") |
|
|
|
|
th |
|
|
|
@ -89,9 +91,11 @@ block content |
|
|
|
|
th |
|
|
|
|
i.icon-check-o(data-toggle="tooltip", data-placement="top", title="Block transactions") |
|
|
|
|
th |
|
|
|
|
i.icon-time(data-toggle="tooltip", data-placement="top", title="Last node time") |
|
|
|
|
i.icon-time(data-toggle="tooltip", data-placement="top", title="Last block time") |
|
|
|
|
th |
|
|
|
|
i.icon-clock(data-toggle="tooltip", data-placement="top", title="Propagation time") |
|
|
|
|
th |
|
|
|
|
i.icon-clock(data-toggle="tooltip", data-placement="top", title="Up-time") |
|
|
|
|
i.icon-bulb(data-toggle="tooltip", data-placement="top", title="Up-time") |
|
|
|
|
tbody |
|
|
|
|
tr(ng-repeat='node in nodes', class="{{ node.stats | mainClass : bestBlock }}") |
|
|
|
|
td(rel="{{node.id}}") |
|
|
|
@ -100,14 +104,16 @@ block content |
|
|
|
|
td |
|
|
|
|
div.small(ng-bind-html="node.info.node | nodeVersion") |
|
|
|
|
//- div.small {{node.info.os}}, {{node.info.os_v}} |
|
|
|
|
td.small(class="{{ node.stats.latency | latencyClass }}") {{node.stats | latencyFilter}} |
|
|
|
|
td(class="{{ node.stats.mining | miningClass }}") |
|
|
|
|
i(class="{{ node.stats.mining | miningIconClass }}") |
|
|
|
|
i.small(class="{{ node.stats.mining | miningIconClass }}") |
|
|
|
|
td(class="{{ node.stats.peers | peerClass }}", style="padding-left: 18px;") {{node.stats.peers}} |
|
|
|
|
td(style="padding-left: 18px;") {{node.stats.pending}} |
|
|
|
|
td(class="{{ node.stats.block.number | blockClass : bestBlock }}") {{'#' + node.stats.block.number}} |
|
|
|
|
td(class="{{ node.stats.block.number | blockClass : bestBlock }}").hidden-sm.hidden-xs |
|
|
|
|
span.small {{node.stats.block.hash}} |
|
|
|
|
span.small {{node.stats.block.hash | hashFilter}} |
|
|
|
|
//- div.small Difficulty: {{node.stats.block.difficulty | gasFilter}} | Gas used: {{node.stats.block.gasUsed | gasFilter}} | Min gas price: {{node.stats.block.minGasPrice | gasFilter}} | Gas limit: {{node.stats.block.gasLimit | gasFilter}} |
|
|
|
|
td(style="padding-left: 18px;") {{node.stats.block.txCount}} |
|
|
|
|
td(class="{{ node.stats.block.timestamp | timeClass }}") {{node.stats.block.timestamp | blockTimeFilter }} |
|
|
|
|
td(class="{{ node.stats.block.propagation | propagationTimeClass }}") {{node.stats.block.propagation}} ms |
|
|
|
|
td(class="{{ node.stats.uptime | upTimeClass }}") {{ node.stats.uptime | upTimeFilter }} |
|
|
|
|