From 8c96e82d1fbab103444d6900318fd249c6164a54 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
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 @@
 <th>enables</th>
 <td>
 {% for process in enabled_processes %}
-<a href="process?id=process.id_">{{process.title.newest|e}}</a><br />
+<a href="process?id={{process.id_}}">{{process.title.newest|e}}</a><br />
 {% endfor %}
 </td>
 </tr>
@@ -36,7 +36,7 @@
 <th>disables</th>
 <td>
 {% for process in disabled_processes %}
-<a href="process?id=process.id_">{{process.title.newest|e}}</a><br />
+<a href="process?id={{process.id_}}">{{process.title.newest|e}}</a><br />
 {% endfor %}
 </td>
 </tr>
@@ -45,7 +45,7 @@
 <th>enabled by</th>
 <td>
 {% for process in enabling_processes %}
-<a href="process?id=process.id_">{{process.title.newest|e}}</a><br />
+<a href="process?id={{process.id_}}">{{process.title.newest|e}}</a><br />
 {% endfor %}
 </td>
 </tr>
@@ -54,7 +54,7 @@
 <th>disabled by</th>
 <td>
 {% for process in disabling_processes %}
-<a href="process?id=process.id_">{{process.title.newest|e}}</a><br />
+<a href="process?id={{process.id_}}">{{process.title.newest|e}}</a><br />
 {% endfor %}
 </td>
 </tr>
-- 
2.30.2