X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=todo_templates%2Fcalendar.html;h=82a9ca2e487e16517ef127f7a41859aedede051f;hb=76210b693b77e67bf8160a7fb869ae416309d333;hp=1bfb88347cc4a75e27614f1c621400de003e5819;hpb=13a15b95ade73f4455db648b70e1de784c515039;p=misc diff --git a/todo_templates/calendar.html b/todo_templates/calendar.html index 1bfb883..82a9ca2 100644 --- a/todo_templates/calendar.html +++ b/todo_templates/calendar.html @@ -6,7 +6,7 @@ tr.day_row td { background-color: #cccccc } td.checkbox { width: 0.1em; height: 0.1em; padding: 0em; text-align: center; } {% endblock %} {% block content %} -
+

from: to: @@ -15,11 +15,11 @@ to: {% for date, day in days.items() | sort() %} {% if day.weekday == 'Mo' %}{% endif %} -{{ day.weekday }} {{ date }} |{{ '%04.1f' % day.todos_sum|round(2) }}| {{ day.comment|e }} +{{ day.weekday }} {{ date }} |{{ "%5.1f" |format(day.todos_sum)}}| {{ day.comment|e }} {% for todo in day.linked_todos_as_list %} {% if todo.visible %} -{% if todo.done and not "cancelled" in todo.tags%}✓{% else %}  {% endif %}{% if "cancelled" in todo.tags %}{% endif %}{% if "deadline" in todo.tags %}DEADLINE: {% endif %}{{ todo.title|e }}{%if "cancelled" in todo.tags%}{% endif %}{{ todo.comment|e }} +{% if todo.done and not "cancelled" in todo.tags%}✓{% else %}  {% endif %}{% if "cancelled" in todo.tags %}{% endif %}{% if "deadline" in todo.tags %}DEADLINE: {% endif %}{{ todo.title|e }}{%if "cancelled" in todo.tags%}{% endif %}{{ todo.comment|e }} {% endif %} {% endfor %}