diff --git a/meshview/templates/node.html b/meshview/templates/node.html
index 155b6fd..c7031e8 100644
--- a/meshview/templates/node.html
+++ b/meshview/templates/node.html
@@ -143,19 +143,20 @@
-
Node ID:—
-
Long Name: —
-
Short Name: —
+
Node ID: —
+
Hex ID: —
+
Long Name: —
+
Short Name: —
-
Hardware Model: —
-
Firmware: —
-
Role: —
+
Hardware Model: —
+
Firmware: —
+
Role: —
-
Channel: —
-
Latitude: —
-
Longitude: —
+
Channel: —
+
Latitude: —
+
Longitude: —
-
Last Update: —
+
Last Update: —
@@ -406,6 +407,7 @@ async function loadNodeInfo(){
nodeMap[fromNodeId] || fromNodeId;
// Info card
+ document.getElementById("info-id").textContent = node.id ?? "—";
document.getElementById("info-node-id").textContent = node.node_id ?? "—";
document.getElementById("info-long-name").textContent = node.long_name ?? "—";
document.getElementById("info-short-name").textContent = node.short_name ?? "—";
diff --git a/meshview/templates/nodelist.html b/meshview/templates/nodelist.html
index f89849c..4f199f3 100644
--- a/meshview/templates/nodelist.html
+++ b/meshview/templates/nodelist.html
@@ -2,23 +2,32 @@
{% block css %}
{% endblock %}