Host-customized fork of https://github.com/tecnovert/basicswap/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
488 B
16 lines
488 B
{% include 'header.html' %} |
|
|
|
<h3>Active Swaps</h3> |
|
{% if refresh %} |
|
<p>Page Refresh: {{ refresh }} seconds</p> |
|
{% endif %} |
|
|
|
<table> |
|
<tr><th>Bid ID</th><th>Offer ID</th><th>Bid Status</th><th>ITX Status</th><th>PTX Status</th></tr> |
|
{% for s in active_swaps %} |
|
<tr><td><a href=/bid/{{ s[0] }}>{{ s[0] }}</a></td><td><a href=/offer/{{ s[1] }}>{{ s[1] }}</a></td><td>{{ s[2] }}</td><td>{{ s[3] }}</td><td>{{ s[4] }}</td></tr> |
|
{% endfor %} |
|
</table> |
|
|
|
<p><a href="/">home</a></p> |
|
</body></html>
|
|
|