diff --git a/basicswap/http_server.py b/basicswap/http_server.py
index 55181b5..2fecd3a 100644
--- a/basicswap/http_server.py
+++ b/basicswap/http_server.py
@@ -290,22 +290,14 @@ class HttpHandler(BaseHTTPRequestHandler):
swap_client = self.server.swap_client
offers = swap_client.listOffers(sent)
- content = html_content_start(self.server.title, self.server.title) \
- + '
' + ('Sent ' if sent else '') + 'Offers
'
-
- content += ''
- 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} | {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