X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=templates%2Fday.html;h=efa1c9bb1e78fc5ea455c5a678b4727fb22efdd3;hb=80cd423427e523bde8268428a5a8c4573f54adaa;hp=e3fe5ef29c5865551d42d751a5d45ea380921065;hpb=e49ef886fbe6308db338f025d21f9cb9a3901240;p=plomtask diff --git a/templates/day.html b/templates/day.html index e3fe5ef..efa1c9b 100644 --- a/templates/day.html +++ b/templates/day.html @@ -1,18 +1,50 @@ {% extends 'base.html' %} -{% macro node_with_children(node, indent) %} -
  • {% for i in range(indent) %}+{% endfor %} + +{% macro show_node(node, indent) %} {% 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 %} +{% for i in range(indent) %}  {% endfor %} + {% 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 %} +{% for i in range(indent) %} {% endfor %} + +{% if node.seen %}({% else %}{% endif %}{{node.item.title.newest|e}}{% if node.seen %}){% else %}{% endif %} +{% endif %} +{% endmacro %} + + +{% macro undone_with_children(node, indent) %} +{% if not node.hide %} + + +{% if node.is_todo %} + +{% endif %} + + +{{ show_node(node, indent) }} + + +{% endif %} +{% for child in node.children %} +{{ undone_with_children(child, indent+1) }} +{% endfor %} +{% endmacro %} + + +{% macro done_with_children(node, indent) %} +{% if not node.hide %} + + +{{ show_node(node, indent) }} + + {% endif %} {% for child in node.children %} -{{ node_with_children(child, indent+1) }} +{{ done_with_children(child, indent+1) }} {% endfor %} {% endmacro %} + {% block content %}

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

    @@ -27,25 +59,30 @@ add todo: {% endfor %} -

    conditions

    +