mirror of
https://github.com/GOSTSec/gostexplr
synced 2025-01-15 17:20:04 +00:00
19 lines
323 B
Plaintext
19 lines
323 B
Plaintext
|
extends layout
|
||
|
|
||
|
block content
|
||
|
h3 Block
|
||
|
|
||
|
table
|
||
|
each key in Object.keys(block.dataValues)
|
||
|
if (key === 'Transactions')
|
||
|
-continue
|
||
|
tr
|
||
|
td.capitalize #{key}
|
||
|
td #{block[key]}
|
||
|
|
||
|
h3 Transactions
|
||
|
each tx in block.Transactions
|
||
|
div
|
||
|
a(href='/transaction/#{tx.txid}/') #{tx.txid}
|
||
|
|