monitor/views/block.pug

20 lines
418 B
Plaintext

extends layout
block content
h1 #{title} #{num}
h2 Transactions
table(class="table")
thead
tr
th(scope="col") N° transaction
th(scope="col") Détails
tbody
each transaction in transactions
tr
th(scope="row")= transaction["transactionIndex"]
td
each attr, desc in transaction
p= desc + " : " + attr