X-Git-Url: https://plomlompom.com/repos/bar%20baz.html?a=blobdiff_plain;f=templates%2Fday.html;h=8887f9a6609c05c119773d2d7ba68b131622856d;hb=951d8ad55c0d54286f9c986257a67dfa9710fcf2;hp=637e08d94ad2e72da8fbcbd009b0c428131edaee;hpb=12195a1fe2c15334c866036eaa171eb8e92f0408;p=plomtask diff --git a/templates/day.html b/templates/day.html index 637e08d..8887f9a 100644 --- a/templates/day.html +++ b/templates/day.html @@ -5,6 +5,22 @@ {% for child in todo.children %} {{ todo_with_children(child, indent+1) }} {% endfor %} +{% for condition in todo.conditions %} +
  • {% for i in range(indent) %} {% endfor %}  <[{% if condition.is_active %}x{% else %} {% endif %}] {{condition.title.newest|e}} +{% endfor %} +{% endmacro %} + +{% macro node_with_children(node, indent) %} +
  • {% for i in range(indent) %}+{% endfor %} +{% if node.is_todo %} +{% if not node.item.is_doable %}{% endif %}[{% if node.item.is_done %}x{% else %} {% endif %}]{% if not node.item.is_doable %}{% endif %} +{% if node.seen %}({% else %}{% endif %}{{node.item.process.title.newest|e}}{% if node.seen %}){% else %}{% endif %} +{% else %} +< {% if node.seen %}({% else %}{% endif %}{{node.item.title.newest|e}}{% if node.seen %}){% else %}{% endif %} +{% endif %} +{% for child in node.children %} +{{ node_with_children(child, indent+1) }} +{% endfor %} {% endmacro %} {% block content %} @@ -22,9 +38,23 @@ add todo: {% endfor %} +

    conditions

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

    todos

    {% endblock %}