From e350557ffc4b4127a442a47d300dcd1acb23b3ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 17 Aug 2023 05:42:40 +0200 Subject: [PATCH] Continued: - ops, don't link None --- templates/views/infos.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/templates/views/infos.html b/templates/views/infos.html index 3421b3b..0eb57d8 100644 --- a/templates/views/infos.html +++ b/templates/views/infos.html @@ -26,7 +26,13 @@ Software: - {{instance['software']}} + + {% if instance['software'] != None %} + {{instance['software']}} + {% else %} + - + {% endif %} + -- 2.39.5