diff --git a/basicswap/templates/bid.html b/basicswap/templates/bid.html
index ca69482..727feed 100644
--- a/basicswap/templates/bid.html
+++ b/basicswap/templates/bid.html
@@ -10,7 +10,11 @@
{% endfor %}
+{% if data.was_sent == 'True' %}
+| Swap | {{ data.amt_to }} {{ data.ticker_to }} for {{ data.amt_from }} {{ data.ticker_from }} |
+{% else %}
| Swap | {{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }} |
+{% endif %}
| Bid State | {{ data.bid_state }} |
| StateDescription | {{ data.state_description }} |
| ITX State | {{ data.itx_state }} |
diff --git a/basicswap/templates/bid_xmr.html b/basicswap/templates/bid_xmr.html
index 2471838..b09241a 100644
--- a/basicswap/templates/bid_xmr.html
+++ b/basicswap/templates/bid_xmr.html
@@ -10,7 +10,11 @@
{% endfor %}
+{% if data.was_sent == 'True' %}
+| Swap | {{ data.amt_to }} {{ data.ticker_to }} for {{ data.amt_from }} {{ data.ticker_from }} |
+{% else %}
| Swap | {{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }} |
+{% endif %}
| Bid State | {{ data.bid_state }} |
| StateDescription | {{ data.state_description }} |
| Offer | {{ data.offer_id }} |