diff --git a/templates/nostrclient/index.html b/templates/nostrclient/index.html
index 8018a92..57c3b73 100644
--- a/templates/nostrclient/index.html
+++ b/templates/nostrclient/index.html
@@ -50,30 +50,30 @@
-
+
⬆️
⬇️
- ⚠️
-
-
-
-
-
-
+ ⚠️
+
+
+
+
+
+
+
+
+
-
- {{ col.value }}
-
-
{{ col.value }}
+
{{ col.value }}
-
-
-
@@ -252,10 +252,10 @@
relayTable: {
columns: [
{
- name: 'connected_string',
+ name: 'connected',
align: 'left',
label: '',
- field: 'connected_string'
+ field: 'connected'
},
{
name: 'relay',
diff --git a/views_api.py b/views_api.py
index f918e3c..b681f50 100644
--- a/views_api.py
+++ b/views_api.py
@@ -24,10 +24,6 @@ all_routers: list[NostrRouter] = []
async def api_get_relays() -> RelayList:
relays = RelayList(__root__=[])
for url, r in nostr.client.relay_manager.relays.items():
- # status_text = (
- # f"⬆️ {r.num_sent_events} ⬇️ {r.num_received_events} ⚠️ {r.error_counter}"
- # )
- # connected_text = "🟢" if r.connected else "🔴"
relay_id = urlsafe_short_hash()
relays.__root__.append(
Relay(