From: Christian Heller <c.heller@plomlompom.de>
Date: Thu, 30 May 2024 04:57:09 +0000 (+0200)
Subject: Fix buggy links in Condition view.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/pick_tasks?a=commitdiff_plain;h=8c96e82d1fbab103444d6900318fd249c6164a54;p=plomtask

Fix buggy links in Condition view.
---

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>