From 8b3926bf2160fbdd0136d1fc0d4fc5ef98aa642b Mon Sep 17 00:00:00 2001
From: Jan-Tarek Butt <tarek@ring0.de>
Date: Wed, 13 Dec 2023 21:55:24 +0100
Subject: [PATCH] unmonitored_nodes.html: show online state on unmonitored page

Signed-off-by: Jan-Tarek Butt <tarek@ring0.de>
---
 netmon_core/templates/protected/unmonitored_nodes.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/netmon_core/templates/protected/unmonitored_nodes.html b/netmon_core/templates/protected/unmonitored_nodes.html
index 0842841..ffcc1fa 100644
--- a/netmon_core/templates/protected/unmonitored_nodes.html
+++ b/netmon_core/templates/protected/unmonitored_nodes.html
@@ -7,7 +7,7 @@
 <ul>
   {% for node in nodes %}
     <li>
-      {{ node.node_id }} - {{ node.node_name }} - {{ node.entry_date }}
+      {{ node.node_id }} - {{ node.node_name }} - {{ node.entry_date }} - {{ node.is_online }}
       <form method="post" action="{% url 'add_to_monitored' node.node_id %}">
         {% csrf_token %}
         <button type="submit">Add to Monitored</button>
-- 
GitLab