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.
34 lines
893 B
HTML
34 lines
893 B
HTML
{% extends 'includes/base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>LWS Web Admin</h1>
|
|
<a href="{{ url_for('wallet.list') }}" class="button outline primary">Manage Wallets</a>
|
|
<hr>
|
|
<p>LWS Admin: {{ config.LWS_ADMIN_URL }}</p>
|
|
<p>LWS RPC: {{ config.LWS_URL }}</p>
|
|
<h3>Active Accounts</h3>
|
|
<table class="striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Status</th>
|
|
<th>Address</th>
|
|
<th>Height</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for a in lws_accounts %}
|
|
{% if a != 'hidden' %}
|
|
{% for acc in lws_accounts[a] %}
|
|
<tr>
|
|
<td>{{ a | upper }}</td>
|
|
<td>{{ acc['address'] | shorten }}</td>
|
|
<td>{{ acc['scan_height'] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
|