{% extends 'base.html' %} {% macro todo_with_children(todo, indent) %}
  • {% for i in range(indent) %}+{% endfor %}{{todo.process.title.newest|e}} {% for child in todo.children %} {{ todo_with_children(child, indent+1) }} {% endfor %} {% endmacro %} {% block content %}

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

    prev | next

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