{% include 'header.html' %}
Bid {{ bid_id }}
{% if refresh %}
Page Refresh: {{ refresh }} seconds
{% endif %}
{% for m in messages %}
{{ m }}
{% endfor %}
Swap | {{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }} |
Bid State | {{ data.bid_state }} |
StateDescription | {{ data.state_description }} |
Offer | {{ data.offer_id }} |
Address From | {{ data.addr_from }} |
Created At | {{ data.created_at }} |
Expired At | {{ data.expired_at }} |
Sent | {{ data.was_sent }} |
Received | {{ data.was_received }} |
{% if data.show_txns %}
Transactions
Tx Type | Tx ID |
{% for tx in data.txns %}
{{ tx.type }} | {{ tx.txid }} |
{% endfor %}
{% endif %}
Old States
State | Set At |
{% for s in old_states %}
{{ s[1] }} | {{ s[0] | formatts }} |
{% endfor %}
Events
At | Event |
{% for e in data.events %}
{{ e.at | formatts }} | {{ e.desc }} |
{% endfor %}
home