You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
669 B
28 lines
669 B
7 years ago
|
extends layout
|
||
|
|
||
|
block headContent
|
||
|
title Interesting Transactions
|
||
|
|
||
|
block content
|
||
|
h1(class="h2") Interesting Transactions
|
||
|
hr
|
||
|
|
||
|
table(class="table table-striped table-responsive-sm mt-4")
|
||
|
thead
|
||
|
tr
|
||
|
th(class="data-header") Note
|
||
|
th(class="data-header") TxID
|
||
|
th(class="data-header") Read More
|
||
|
tbody
|
||
|
each tx, index in interestingTransactions
|
||
|
tr
|
||
|
td(class="data-cell") #{tx.note}
|
||
|
|
||
|
td(class="data-cell monospace")
|
||
|
a(href=("/tx/" + tx.txid)) #{tx.txid.substring(0, 25)}...
|
||
|
|
||
|
td(class="data-cell")
|
||
|
if (tx.referenceUrl && tx.referenceUrl.trim().length > 0)
|
||
|
a(href=tx.referenceUrl) Read More
|
||
|
else
|
||
|
span -
|