You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends 'includes/base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<a href="/wallets">Go Back</a>
|
|
|
|
{% set info = wallet.get_wallet_info() %}
|
|
|
|
<h1>{{ wallet.name }}</h1>
|
|
|
|
<h5>{{ wallet.description }}</h5>
|
|
|
|
<h6>{{ wallet.date }}</h6>
|
|
|
|
<p>Restore Height: {{ wallet.restore_height }}</p>
|
|
|
|
<p>Address: <span class="key">{{ wallet.address }}</span></p>
|
|
|
|
<p>Scanned Height: {{ info['scanned_height'] }} <span class="smol">({{ info['blockchain_height'] - info['scanned_height'] }} blocks away from top)</span></p>
|
|
|
|
<p>Chain Height: {{ info['blockchain_height'] }}</p>
|
|
|
|
<p>Spent Outputs: {{ info['spent_outputs'] | length }}</p>
|
|
|
|
|
|
|
|
<a href="{{ url_for('wallet.rescan', id=wallet.id) }}" class="button dark outline">rescan</a>
|
|
|
|
{% if request.args.get('disable') %}
|
|
|
|
<a href="{{ url_for('wallet.disable', id=wallet.id) }}" class="button error">are you sure?</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="?disable=true" class="button error">disable</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|