|
|
|
@ -7,59 +7,20 @@
|
|
|
|
|
|
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
|
|
|
|
|
|
<!-- Height ({{ daemon_height }} / {{ wallet_height }})
|
|
|
|
|
|
|
|
|
|
Transactions - Send - Receive
|
|
|
|
|
|
|
|
|
|
Your Address
|
|
|
|
|
|
|
|
|
|
Transaction History
|
|
|
|
|
|
|
|
|
|
Balance: -->
|
|
|
|
|
|
|
|
|
|
<!-- <header class="masthead">
|
|
|
|
|
<div class="container h-100">
|
|
|
|
|
<div class="row h-100">
|
|
|
|
|
<div class="col-lg-4 my-auto">
|
|
|
|
|
<div class="header-content mx-auto">
|
|
|
|
|
<h2 class="mb-5">Welcome Back {{ current_user.email }}</h2>
|
|
|
|
|
<h3 class="sm">Account Address</h3>
|
|
|
|
|
<p class="small">address</p>
|
|
|
|
|
<h3 class="sm">Wallet Persistence</h3>
|
|
|
|
|
{% if wallet %}
|
|
|
|
|
<h3 class="sm">Account Balance</h3>
|
|
|
|
|
<p class="small">{{ h }}</p>
|
|
|
|
|
<h3 class="sm">Wallet File</h3>
|
|
|
|
|
<p class="small">{{ config.WALLET_PATH }}</p>
|
|
|
|
|
{% else %}
|
|
|
|
|
<h3 class="sm">Wallet Status</h3>
|
|
|
|
|
<p class="small">Not Connected</p>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<a href="/account/wallet/" class="btn btn-outline btn-xl">Connect Wallet</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-6 my-auto">
|
|
|
|
|
<div class="header-content mx-auto">
|
|
|
|
|
<h1 class="mb-5">Logs</h1>
|
|
|
|
|
<h3 class="sm">Transaction Log</h3>
|
|
|
|
|
<p class="small">asd</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header> -->
|
|
|
|
|
|
|
|
|
|
<section class="section2" id="">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<!-- <div class="section-heading text-center">
|
|
|
|
|
<h2>Welcome</h2>
|
|
|
|
|
<p>Prices and network information</p>
|
|
|
|
|
<hr>
|
|
|
|
|
</div> -->
|
|
|
|
|
<div class="section-heading text-center">
|
|
|
|
|
<h2>Wallet Info</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p class="slim"><strong>Address:</strong> {{ subaddress }}</p>
|
|
|
|
|
<p>Balance: {{ balances.1 }} WOW (locked {{ balances.0 }} WOW)</p>
|
|
|
|
|
<p>Height ({{ wallet_height }} / {{ daemon_height }})</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="row fp-row">
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Transactions</a>
|
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl js-scroll-trigger" href="#transfers">Transfers</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Send</a>
|
|
|
|
@ -68,26 +29,39 @@
|
|
|
|
|
<a class="btn btn-lg btn-link btn-outline btn-xl" href="#">Receive</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row fp-row">
|
|
|
|
|
<p>Your address: {{ subaddress }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<!-- <section class="section1" id="seed">
|
|
|
|
|
<section class="section1" id="transfers">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="section-heading text-center">
|
|
|
|
|
<h2>Manage your funds</h2>
|
|
|
|
|
<p class="text-muted">This is your mnemonic seed and account password.</p>
|
|
|
|
|
<p class="text-muted">Store it securely and never share it with anyone. Use this to log into {{ config.SITE_NAME }}.</p>
|
|
|
|
|
<p class="text-muted">If you'd like a new seed, refresh the page.</p>
|
|
|
|
|
<hr><br>
|
|
|
|
|
<p>{{ seed }}</p>
|
|
|
|
|
<hr><br>
|
|
|
|
|
<a href="/login" class="btn btn-outline-inverse btn-xl">Login</a>
|
|
|
|
|
<h2>Transfers</h2>
|
|
|
|
|
<p></p>
|
|
|
|
|
|
|
|
|
|
<table class="table table-striped table-hover table-responsive table-responsive-sm tx-table">
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Date</th>
|
|
|
|
|
<th>Type</th>
|
|
|
|
|
<th>Tx ID</th>
|
|
|
|
|
<th>Amount</th>
|
|
|
|
|
<th>Confirmations</th>
|
|
|
|
|
<th>Fee</th>
|
|
|
|
|
</tr>
|
|
|
|
|
{% for tx in all_transfers | sort(attribute='timestamp', reverse=True) %}
|
|
|
|
|
{% if tx.type == 'pool' %}<tr class="table-warning">{% else %}<tr>{% endif %}
|
|
|
|
|
<td>{{ tx.timestamp | datestamp }}</td>
|
|
|
|
|
<td>{{ tx.type }}</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.confirmations }}</td>
|
|
|
|
|
<td>{{ tx.fee / 100000000000 }} WOW</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section> -->
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
{% include 'footer.html' %}
|
|
|
|
|
|
|
|
|
|