summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-25 11:42:15 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-25 11:42:15 +0200
commit850ee62a5c6b469bb25832b24cafb5a609ea84bd (patch)
treed616815ffc891e1815c74c962d10cd1f9f8ef23a /modules
parent2eb16c63689f12245fcbaf863705ddc745951f8c (diff)
TODO interface
Diffstat (limited to 'modules')
-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");