X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=templates%2Fcalendar.html;h=d7ec545bf3eb075b19cdce76d1fd7f9a7a9cf55d;hb=d916781d66c1aaf4e3a04580153dce61744d5729;hp=f6208bbc79d08bdad6301480293d548d89a09923;hpb=2ca0045683f74254fd0e248c2567fa2efa358c08;p=plomtask diff --git a/templates/calendar.html b/templates/calendar.html index f6208bb..d7ec545 100644 --- a/templates/calendar.html +++ b/templates/calendar.html @@ -16,11 +16,16 @@ tr.month_row td { td.day_name { padding-right: 0.5em; } +td.today { + font-weight: bold; +} {% endblock %} {% block content %} +

calendar

+
from to @@ -43,10 +48,18 @@ to {{day.weekday|truncate(2,True,'',0)}} -{{day.date}} +{{day.date}} {{day.comment|e}} +{% for todo in day.calendarized_todos %} + +[{% if todo.is_done %}X{% else %} {% endif %}] +{{todo.title_then|e}} +{{todo.comment|e}} + +{% endfor %} + {% endfor %} {% endblock %}