{% load tz calendar_tags %}

{{ month_name }}

{% for name in day_names %}
{{ name }}
{% endfor %} {% for week in weeks %} {% for day in week %}
{{ day.date.day }} {{ day.moon.emoji }}
{% for event in day.all_day_events %}
{% include 'tom_calendar/partials/target_list_block.html' with target_list=event.target_list %}
{{ event.title|truncatechars:18 }} {% if event.active_todos.count %} ({{ event.active_todos.count }}) {% endif %}
{% endfor %} {% for event in day.events %}
{% include 'tom_calendar/partials/target_list_block.html' with target_list=event.target_list %} {{ event.title|truncatechars:16 }} {% if event.active_todos.count %} ({{ event.active_todos.count }}) {% endif %} {{ event.start_time|offset_time:utc_offset|time:"H:i" }}
{% endfor %}
{% endfor %} {% endfor %}
{% for target_list in target_lists %} {% include 'tom_calendar/partials/target_list_block.html' with target_list=target_list %} {{ target_list.name }} {% endfor %}