From add0b2cddcf0e04bcc9a28b99a41bfbb2e35a43c Mon Sep 17 00:00:00 2001 From: svatantrya Date: Tue, 14 Jul 2026 08:28:19 -0400 Subject: [PATCH] add expiry date to weinfo page, fix last update population, move last update to first column --- weinfo.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/weinfo.html b/weinfo.html index 3724ed3..dfe2a70 100644 --- a/weinfo.html +++ b/weinfo.html @@ -41,6 +41,7 @@
Version: 
Fees: 
Tld: 
+
Last Update: 
Height: 
@@ -51,7 +52,7 @@
Balance: 
Donations: 
Status: 
-
Last Update: 
+
Expiry: 
@@ -95,6 +96,8 @@ document.getElementById('webalance').innerHTML = bal ? (unc ? bal + ' (' + unc + ')' : bal) : '—'; document.getElementById('wedonations').innerHTML = data.donations != null ? data.donations : '—'; document.getElementById('weversion').innerHTML = data.version||'—'; + document.getElementById('weexpiry').innerHTML = '' + (data.expiry_date || '—') + ''; + document.getElementById('weupdate').innerHTML = data.last_update || '—'; const statusMap = { 'OK': 'Health check passed', 'TIMEOUT': 'Connection timeout',