X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=templates%2Fcalendar.html;h=77242037982762100a20e21bf0d8b453877c7fe3;hb=31b778276bb7297151f1c90098cc50842c9c138f;hp=eae103d9929ccc061b6eff1d296ecf2767325e81;hpb=12be63c6ef58282cb6b7d5b7bc2eabe8946a1bfc;p=plomtask diff --git a/templates/calendar.html b/templates/calendar.html index eae103d..7724203 100644 --- a/templates/calendar.html +++ b/templates/calendar.html @@ -1,4 +1,6 @@ -{% extends 'base.html' %} +{% extends '_base.html' %} + + {% block css %} tr.week_row td { @@ -19,6 +21,8 @@ td.day_name { {% block content %} +

calendar

+
from to @@ -45,6 +49,14 @@ to {{day.comment|e}} +{% for todo in day.calendarized_todos %} + +[{% if todo.is_done %}X{% else %} {% endif %}] +{{todo.title.newest|e}} +{{todo.comment|e}} + +{% endfor %} + {% endfor %} {% endblock %}