blockbook/static/templates/block.html
2023-07-02 22:06:29 +05:30

76 lines
2.8 KiB
HTML

{{define "specific"}}{{$cs := .CoinShortcut}}{{$b := .Block}}{{$data := .}}
<div class="row">
<h1 class="col-sm-6">Block</h1>
<nav class="col-sm-6 paging justify-content-end pb-1">
{{if $b.Prev}}<a class="btn btn-paging" href="/block/{{$b.Prev}}">Previous Block</a>{{else}}<span class="btn btn-paging">Previous Block</span>{{end}}
{{if $b.Next}}<a class="btn btn-paging ms-2" href="/block/{{$b.Next}}">Next Block</a>{{else}}<span class="btn btn-paging ms-2">Next Block</span>{{end}}
</nav>
</div>
<div class="row pt-3">
<h5 class="col-lg-3 h-data"><span class="ellipsis copyable">{{formatUint32 $b.Height}}</span></h5>
<h5 class="col-lg-9 justify-content-end d-flex h-data"><span class="copyable ellipsis">{{$b.Hash}}</span></h5>
</div>
<div class="row">
<div class="col-md-6">
<table class="table data-table info-table">
<tbody>
<tr>
<td>Transactions</td>
<td>{{formatInt $b.TxCount}}</td>
</tr>
<tr>
<td>Height</td>
<td>{{formatUint32 $b.Height}}</td>
</tr>
<tr>
<td>Confirmations</td>
<td>{{formatInt $b.Confirmations}}</td>
</tr>
<tr>
<td>Timestamp</td>
<td>{{unixTimeSpan $b.Time}}</td>
</tr>
<tr>
<td>Size (bytes)</td>
<td>{{formatInt $b.Size}}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<table class="table data-table info-table">
<tbody>
<tr>
<td>Version</td>
<td class="ellipsis">{{$b.Version}}</td>
</tr>
<tr>
<td>Merkle Root</td>
<td class="ellipsis">{{$b.MerkleRoot}}</td>
</tr>
<tr>
<td>Nonce</td>
<td class="ellipsis">{{$b.Nonce}}</td>
</tr>
<tr>
<td>Bits</td>
<td class="ellipsis">{{$b.Bits}}</td>
</tr>
<tr>
<td>Difficulty</td>
<td class="ellipsis">{{$b.Difficulty}}</td>
</tr>
</tbody>
</table>
</div>
</div>
{{if $b.Transactions}}
<div class="row pt-3 pb-1">
<h3 class="col-md-6 align-self-center">Transactions</h3>
<div class="col-md-6">{{template "paging" $data}}</div>
</div>
<div>
{{range $tx := $b.Transactions}}{{$data := setTxToTemplateData $data $tx}}{{template "txdetail" $data}}{{end}}
</div>
{{template "paging" $data }}
{{end}}{{end}}