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.
27 lines
913 B
HTML
27 lines
913 B
HTML
{% extends 'includes/base.html' %}
|
|
|
|
{% block content %}
|
|
{% 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: {{ wallet.address }}</p>
|
|
<p>Locked: {{ info['locked_funds'] }}</p>
|
|
<p>Received: {{ info['total_received'] }}</p>
|
|
<p>Sent: {{ info['total_sent'] }}</p>
|
|
<p>Scanned Height: {{ info['scanned_height'] }} ({{ info['blockchain_height'] - info['scanned_height'] }} blocks away from top)</p>
|
|
<p>Chain Height: {{ info['blockchain_height'] }}</p>
|
|
<p>Spent Outputs: {{ info['spent_outputs'] | length }}</p>
|
|
<!--
|
|
{
|
|
'amount': '123123123',
|
|
'key_image': 'asdasdasd',
|
|
'tx_pub_key': 'asdasdasd',
|
|
'out_index': 1,
|
|
'mixin': 15
|
|
}
|
|
-->
|
|
|
|
<a href="{{ url_for('wallet_rescan', id=wallet.id) }}"><button>rescan</button></a>
|
|
{% endblock %} |