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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

61 lines
1.9 KiB

{% extends "base" %}
{% block content %}
{% for i in tx_info %}
{{i.block_height}}
{{i.block_timestamp}}
{{i.double_spend_seen}}
{{i.in_pool}}
{{i.output_indices}}
{% endfor %}
<section id="main">
<div class="container">
<section id="slim-header">
<a href="/" class="button">Go Back</a>
</section>
<div class="col-12">
<section>
<header class="major">
<h2>Transaction {{ tx_hash | truncate(length=4) }}</h2>
<p class="subheader"><strong>Full Hash</strong>: {{ tx_hash }}</p>
<p class="subheader"><strong>Block Timestamp</strong>: {% if tx_info.0.block_timestamp %}{{ tx_info.0.block_timestamp }}{% else %}?{% endif %}</p>
</header>
<div class="row">
<div class="col-4 col-6-medium col-12-small">
<section class="box">
<header>
<h3>Block Height</h3>
</header>
<p>{% if tx_info.0.block_height %}{{ tx_info.0.block_height }}{% else %}pending{% endif %}</p>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box">
<header>
<h3>In Pool</h3>
</header>
<p>{{ tx_info.0.in_pool }}</p>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box">
<header>
<h3>Double Spend</h3>
</header>
<p>{{ tx_info.0.double_spend_seen }}</p>
</section>
</div>
</div>
</section>
</div>
<br><br>
<header class="major">
{% if tx_info.0.block_height %}<h2><a href="/block/height/{{ tx_info.0.block_height }}">View Block</a></h2>{% endif %}
</header>
</div>
</section>
{% endblock content %}