Host-customized fork of https://github.com/tecnovert/basicswap/
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.
58 lines
1.6 KiB
58 lines
1.6 KiB
{% include 'header.html' %} |
|
|
|
<p><a id="refresh" href="/wallets">refresh</a></p> |
|
|
|
<h3>Wallets</h3> |
|
{% if refresh %} |
|
<p>Page Refresh: {{ refresh }} seconds</p> |
|
{% endif %} |
|
|
|
{% for m in messages %} |
|
<p>{{ m }}</p> |
|
{% endfor %} |
|
|
|
<form method="post"> |
|
|
|
{% for w in wallets %} |
|
<h4>{{ w.name }} {{ w.version }}</h4> |
|
{% if w.updating %} |
|
<h5>Updating</h5> |
|
{% endif %} |
|
{% if w.havedata %} |
|
{% if w.error %} |
|
<p>Error: {{ w.error }}</p> |
|
{% else %} |
|
<table> |
|
<tr><td>Last updated:</td><td>{{ w.lastupdated }}</td></tr> |
|
<tr><td>Balance:</td><td>{{ w.balance }}</td>{% if w.unconfirmed %}<td>Unconfirmed:</td><td>{{ w.unconfirmed }}</td>{% endif %}</tr> |
|
|
|
|
|
{% if w.cid == '1' %} |
|
<tr><td>Blind Balance:</td><td>{{ w.blind_balance }}</td>{% if w.blind_unconfirmed %}<td>Blind Unconfirmed:</td><td>{{ w.blind_unconfirmed }}</td>{% endif %}</tr> |
|
<tr><td>Anon Balance:</td><td>{{ w.anon_balance }}</td>{% if w.anon_pending %}<td>Anon Pending:</td><td>{{ w.anon_pending }}</td>{% endif %}</tr> |
|
{% endif %} |
|
|
|
|
|
<tr><td>Blocks:</td><td>{{ w.blocks }}</td></tr> |
|
<tr><td>Synced:</td><td>{{ w.synced }}</td></tr> |
|
<tr><td>Expected Seed:</td><td>{{ w.expected_seed }}</td></tr> |
|
<tr><td><a href="/wallet/{{ w.ticker }}">Manage</a></td></tr> |
|
</table> |
|
{% endif %} |
|
{% endif %} <!-- havedata --> |
|
{% endfor %} |
|
|
|
<input type="hidden" name="formid" value="{{ form_id }}"> |
|
</form> |
|
|
|
<p><a href="/">home</a></p> |
|
|
|
<script> |
|
function confirmReseed() { |
|
return confirm("Are you sure?\nBackup your wallet before and after.\nWon't detect used keys.\nShould only be used for new wallets."); |
|
} |
|
function confirmWithdrawal() { |
|
return confirm("Are you sure?"); |
|
} |
|
</script> |
|
</body></html>
|
|
|