aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jm2l/templates/Staff/list.mako4
1 files changed, 3 insertions, 1 deletions
diff --git a/jm2l/templates/Staff/list.mako b/jm2l/templates/Staff/list.mako
index fbee9e5..3686a32 100644
--- a/jm2l/templates/Staff/list.mako
+++ b/jm2l/templates/Staff/list.mako
@@ -51,7 +51,9 @@ from slugify import slugify
<tr>
<td>
% if task.closed:
- <span class="name" style="text-decoration: line-through;">${task.name}</span>
+ <a href="/Staff/tasks/${task.uid}">
+ <span class="name" style="text-decoration: line-through;">${task.name}</span>
+ </a>
% else:
<a href="/Staff/tasks/${task.uid}">
<span class="name">${task.name}</span>