|
|
@ -7,27 +7,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
|
|
|
|
|
|
|
|
<section class="section2" id="">
|
|
|
|
<section class="section2">
|
|
|
|
<div class="container">
|
|
|
|
<div class="container-slim">
|
|
|
|
<div class="section-heading text-center">
|
|
|
|
<div class="section-heading text-center">
|
|
|
|
<h2>Wallet Info</h2>
|
|
|
|
<h2>Wallet Info</h2>
|
|
|
|
</div>
|
|
|
|
<h4>Address:</h4>
|
|
|
|
<div>
|
|
|
|
<p class="slim small">{{ subaddress }}</p>
|
|
|
|
<p class="slim"><strong>Address:</strong> {{ subaddress }}</p>
|
|
|
|
<br>
|
|
|
|
<p>Balance: {{ balances.1 }} WOW (locked {{ balances.0 }} WOW)</p>
|
|
|
|
<img src="data:image/png;base64,{{ qrcode }}" width=200 class="center">
|
|
|
|
<p>Height ({{ wallet_height }} / {{ daemon_height }})</p>
|
|
|
|
<hr><br>
|
|
|
|
</div>
|
|
|
|
<h4>Balance</h4>
|
|
|
|
|
|
|
|
<p class="inline">{{ balances.1 }} WOW </p>
|
|
|
|
<div class="row fp-row">
|
|
|
|
<p class="inline small">({{ balances.0 }} locked)</p>
|
|
|
|
<div class="col-lg-4">
|
|
|
|
<span class="dashboard-buttons">
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl js-scroll-trigger" href="#transfers">Transfers</a>
|
|
|
|
<div class="col-sm-6 dashboard-button">
|
|
|
|
</div>
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl js-scroll-trigger" href="#transfers">List Tx</a>
|
|
|
|
<div class="col-lg-4">
|
|
|
|
</div>
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Send</a>
|
|
|
|
<div class="col-sm-6 dashboard-button">
|
|
|
|
</div>
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Send Tx</a>
|
|
|
|
<div class="col-lg-4">
|
|
|
|
</div>
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Receive</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
@ -36,8 +35,6 @@
|
|
|
|
<div class="container">
|
|
|
|
<div class="container">
|
|
|
|
<div class="section-heading text-center">
|
|
|
|
<div class="section-heading text-center">
|
|
|
|
<h2>Transfers</h2>
|
|
|
|
<h2>Transfers</h2>
|
|
|
|
<p></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<table class="table table-striped table-hover table-responsive table-responsive-sm tx-table">
|
|
|
|
<table class="table table-striped table-hover table-responsive table-responsive-sm tx-table">
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>Date</th>
|
|
|
@ -45,6 +42,7 @@
|
|
|
|
<th>Tx ID</th>
|
|
|
|
<th>Tx ID</th>
|
|
|
|
<th>Amount</th>
|
|
|
|
<th>Amount</th>
|
|
|
|
<th>Confirmations</th>
|
|
|
|
<th>Confirmations</th>
|
|
|
|
|
|
|
|
<th>Height</th>
|
|
|
|
<th>Fee</th>
|
|
|
|
<th>Fee</th>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{% for tx in all_transfers | sort(attribute='timestamp', reverse=True) %}
|
|
|
|
{% for tx in all_transfers | sort(attribute='timestamp', reverse=True) %}
|
|
|
@ -54,11 +52,11 @@
|
|
|
|
<td><a href="https://wownero.club/transaction/{{ tx.txid }}" target="_blank">{{ tx.txid | truncate(12) }}</a></td>
|
|
|
|
<td><a href="https://wownero.club/transaction/{{ tx.txid }}" target="_blank">{{ tx.txid | truncate(12) }}</a></td>
|
|
|
|
<td>{{ tx.amount / 100000000000 }}</td>
|
|
|
|
<td>{{ tx.amount / 100000000000 }}</td>
|
|
|
|
<td>{{ tx.confirmations }}</td>
|
|
|
|
<td>{{ tx.confirmations }}</td>
|
|
|
|
|
|
|
|
<td>{{ tx.height }}</td>
|
|
|
|
<td>{{ tx.fee / 100000000000 }} WOW</td>
|
|
|
|
<td>{{ tx.fee / 100000000000 }} WOW</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|