1
0
mirror of https://github.com/GOSTSec/gostexplr synced 2025-02-02 01:44:27 +00:00
gostexplr/views/transaction.jade

37 lines
663 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}
tr
td Block time
td #{transaction.blockTime}
tr
td Confirmations
td #{confirmations}
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}