diff --git a/basicswap/http_server.py b/basicswap/http_server.py
index e08ceeb..fa7c9a7 100644
--- a/basicswap/http_server.py
+++ b/basicswap/http_server.py
@@ -289,12 +289,14 @@ class HttpHandler(BaseHTTPRequestHandler):
+ '
' + ('Sent ' if sent else '') + 'Offers
'
content += ''
- content += 'Offer ID | Coin From | Coin To | Amount From | Amount To | Rate |
'
+ content += 'At | Offer ID | Coin From | Coin To | Amount From | Amount To | Rate |
'
for o in offers:
coin_from_name = getCoinName(Coins(o.coin_from))
coin_to_name = getCoinName(Coins(o.coin_to))
amount_to = (o.amount_from * o.rate) // COIN
- content += '{0} | {1} | {2} | {3} | {4} | {5} |
'.format(o.offer_id.hex(), coin_from_name, coin_to_name, format8(o.amount_from), format8(amount_to), format8(o.rate))
+ content += '{0} | {1} | {2} | {3} | {4} | {5} | {6} |
'.format(
+ time.strftime('%Y-%m-%d %H:%M', time.localtime(o.created_at)),
+ o.offer_id.hex(), coin_from_name, coin_to_name, format8(o.amount_from), format8(amount_to), format8(o.rate))
content += '
'
content += 'home