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.
14 lines
347 B
HTML
14 lines
347 B
HTML
{% extends 'includes/base.html' %}
|
|
|
|
{% block content %}
|
|
<p>{{ wallet.name }}</p>
|
|
<p>{{ wallet.description }}</p>
|
|
<p>{{ wallet.date }}</p>
|
|
<p>{{ wallet.restore_height }}</p>
|
|
<p>{{ wallet.address }}</p>
|
|
<pre>
|
|
{{ wallet.get_wallet_info() }}
|
|
</pre>
|
|
|
|
<a href="{{ url_for('wallet_rescan', id=wallet.id) }}"><button>rescan</button></a>
|
|
{% endblock %} |