1
0
mirror of https://github.com/GOSTSec/gostexplr synced 2025-01-15 17:20:04 +00:00
gostexplr/views/block.jade
2018-02-03 21:14:56 +05:00

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}