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

31 lines
546 B
Plaintext

extends layout
block content
h3 Transaction
table
tr
td Hash
td #{transaction.txid}
tr
td Block
td
a(href='/block/#{transaction.Block.hash}/') #{transaction.Block.hash}
h3 In
if transaction.txtx.length
table
each val in transaction.txtx
tr
td
a(href='/transaction/#{val.txid}/') #{val.txid}
else
div Mined
h3 Out
table
each val in vouts
tr
td
a(href='/address/#{val.address}/') #{val.address}
td #{val.value}