summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/todo/todo.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/todo/todo.html b/modules/todo/todo.html
index 47bf07d..8e6efdf 100644
--- a/modules/todo/todo.html
+++ b/modules/todo/todo.html
@@ -81,7 +81,7 @@ function tablerowfor(task){
e=document.createElement("span");
e.classList.add("taskdate");
- e.appendChild(document.createTextNode(fancydate(task.date)));
+ e.appendChild(document.createTextNode((task.repweeks!=0?"(rep) ":"")+fancydate(task.date)));
e.setAttribute("title",task.date.toString());
e.appendChild(document.createElement("br"));
var e2=document.createElement("span");