X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=templates%2Fcalendar.html;h=d7ec545bf3eb075b19cdce76d1fd7f9a7a9cf55d;hb=d7b039106e74a250d343ab036fdf90ad1a27eb3f;hp=220e9bb0f8ced2fc07cba917c3256d1b1fa82c2a;hpb=47108bf733ec32c54710e30b50a71084a5c396cd;p=plomtask diff --git a/templates/calendar.html b/templates/calendar.html index 220e9bb..d7ec545 100644 --- a/templates/calendar.html +++ b/templates/calendar.html @@ -16,6 +16,9 @@ tr.month_row td { td.day_name { padding-right: 0.5em; } +td.today { + font-weight: bold; +} {% endblock %} @@ -45,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 %}