From e1573e18df7c53a3c5cfdb9c0248cda4cd40cd1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 15 Aug 2023 22:48:50 +0200 Subject: [PATCH] Continued: - links from infos.html view to list.html added --- templates/views/infos.html | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/templates/views/infos.html b/templates/views/infos.html index c2bf44c..3421b3b 100644 --- a/templates/views/infos.html +++ b/templates/views/infos.html @@ -26,22 +26,37 @@ Software: - {{instance['software']}} + {{instance['software']}} Originating instance: - {% if instance['origin'] != None %}{% with domain=instance['origin'] %}{% include "widgets/links.html" %}{% endwith %}{% else %}-{% endif %} + + {% if instance['origin'] != None %} + {% with domain=instance['origin'] %}{% include "widgets/links.html" %}{% endwith %} + {% else %} + - + {% endif %} + Command: - {{instance['command']}} + + {{instance['command']}} - + Show + Detection mode: - {{instance['detection_mode']}} + + {% if instance['detection_mode'] != None %} + {{instance['detection_mode']}} + {% else %} + - + {% endif %} + -- 2.39.5