basicswap_miserver/basicswap/templates/index.html

32 lines
1.0 KiB
HTML
Raw Normal View History

2019-07-25 20:15:08 +00:00
{% include 'header.html' %}
<p>
{% if refresh %}
Page Refresh: {{ refresh }} seconds<br/>
{% endif %}
Version: {{ version }}
</p>
<p>
2019-07-27 21:14:28 +00:00
<a href="/wallets">View Wallets</a><br/>
2019-08-05 22:04:40 +00:00
<a href="/settings">Settings</a><br/>
2019-07-27 21:14:28 +00:00
<a href="/rpc">RPC Console</a><br/>
<a href="/explorers">Explorers</a><br/>
2021-10-19 18:59:18 +00:00
<a href="/smsgaddresses">SMSG Addresses</a><br/>
2019-07-27 21:14:28 +00:00
<br/>
2022-03-26 22:08:15 +00:00
<a href="/active">Swaps in Progress: {{ summary.num_swapping }}</a><br/>
2019-07-25 20:15:08 +00:00
<a href="/offers">Network Offers: {{ summary.num_network_offers }}</a><br/>
<a href="/sentoffers">Sent Offers: {{ summary.num_sent_offers }}</a><br/>
<a href="/bids">Received Bids: {{ summary.num_recv_bids }}</a><br/>
<a href="/sentbids">Sent Bids: {{ summary.num_sent_bids }}</a><br/>
<a href="/watched">Watched Outputs: {{ summary.num_watched_outputs }}</a><br/>
2022-05-23 21:51:06 +00:00
<a href="/automation">Automation Strategies</a><br/>
2022-03-26 22:08:15 +00:00
{% if use_tor_proxy %} <a href="/tor">TOR Information</a><br/> {% endif %}
2019-07-25 20:15:08 +00:00
</p>
<p><a href="/newoffer">New Offer</a></p>
2021-11-22 20:24:48 +00:00
<p><a href="/shutdown/{{ shutdown_token }}">Shutdown</a></p>
2019-07-25 20:15:08 +00:00
</body>
</html>