diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-10-25 11:42:15 +0200 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-10-25 11:42:15 +0200 |
commit | 850ee62a5c6b469bb25832b24cafb5a609ea84bd (patch) | |
tree | d616815ffc891e1815c74c962d10cd1f9f8ef23a /modules/todo/todo.html | |
parent | 2eb16c63689f12245fcbaf863705ddc745951f8c (diff) |
TODO interface
Diffstat (limited to 'modules/todo/todo.html')
-rw-r--r-- | modules/todo/todo.html | 2 |
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"); |