From 8c96e82d1fbab103444d6900318fd249c6164a54 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 30 May 2024 06:57:09 +0200 Subject: [PATCH] Fix buggy links in Condition view. --- templates/condition.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/condition.html b/templates/condition.html index 324c8f8..6b28a52 100644 --- a/templates/condition.html +++ b/templates/condition.html @@ -27,7 +27,7 @@ enables {% for process in enabled_processes %} -{{process.title.newest|e}}
+{{process.title.newest|e}}
{% endfor %} @@ -36,7 +36,7 @@ disables {% for process in disabled_processes %} -{{process.title.newest|e}}
+{{process.title.newest|e}}
{% endfor %} @@ -45,7 +45,7 @@ enabled by {% for process in enabling_processes %} -{{process.title.newest|e}}
+{{process.title.newest|e}}
{% endfor %} @@ -54,7 +54,7 @@ disabled by {% for process in disabling_processes %} -{{process.title.newest|e}}
+{{process.title.newest|e}}
{% endfor %} -- 2.30.2