{% extends 'base.html' %} {% macro todo_with_children(todo, indent) %}
  • {% for i in range(indent) %}+{% endfor %} [{% if todo.is_done %}x{% else %} {% endif %}] {{todo.process.title.newest|e}} {% for child in todo.children %} {{ todo_with_children(child, indent+1) }} {% endfor %} {% for condition in todo.conditions %}
  • {% for i in range(indent+1) %}+{% endfor %} [{% if condition.is_active %}x{% else %} {% endif %}] {{condition.title.newest|e}} {% endfor %} {% endmacro %} {% block content %}

    {{day.date}} / {{day.weekday}}

    prev | next

    comment:
    add todo: {% for process in processes %} {% endfor %}

    conditions

    {% for node in conditions_listing %}
  • [{% if node['condition'].is_active %}x{% else %} {% endif %}] {{node['condition'].title.newest|e}}
  • {% endfor %}

    todos

    {% endblock %}