|
|
|
@ -32,7 +32,7 @@
|
|
|
|
|
<header>
|
|
|
|
|
<h3>Transaction Fee</h3>
|
|
|
|
|
</header>
|
|
|
|
|
<p>{{ tx_info.0.as_json_full.rct_signatures.txnFee / 1000000000000 | default(value="?") }} WOW</p>
|
|
|
|
|
<p>{% if tx_info.0.as_json_full.rct_signatures.txnFee / 1000000000000 %}{{ tx_info.0.as_json_full.rct_signatures.txnFee }} WOW{% else %}0 (mined){% endif %}</p>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-4 col-6-medium col-12-small">
|
|
|
|
@ -80,7 +80,7 @@
|
|
|
|
|
</tr>
|
|
|
|
|
{% for i in tx_info.0.as_json_full.vin %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ i.key.k_image | default(value="?") }}</td>
|
|
|
|
|
<td>{{ i.key.k_image | default(value="none (mined)") }}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
@ -101,6 +101,12 @@
|
|
|
|
|
{% endif %}
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="debug">
|
|
|
|
|
<table>
|
|
|
|
|
<caption><h2>Debug Output</h2></caption>
|
|
|
|
|
</table>
|
|
|
|
|
<p>{{ debug | json_encode() }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|