X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;ds=sidebyside;f=templates%2Fday.html;h=ce16f28179588d367680dd80c2123459f4942251;hb=53f151ef577dd8115e72d38a8991ad77c75f7e59;hp=a0823f33e16fb218d3212756fb3fe11bb9c8cfb3;hpb=f8118b1ed8615870b490566cf649d191f5877932;p=plomtask diff --git a/templates/day.html b/templates/day.html index a0823f3..ce16f28 100644 --- a/templates/day.html +++ b/templates/day.html @@ -1,4 +1,5 @@ -{% extends 'base.html' %} +{% extends '_base.html' %} +{% import '_macros.html' as macros %} @@ -106,11 +107,6 @@ td.todo_line { comment:
add todo: - -{% for process in processes %} - -{% endfor %} -

todo

@@ -148,13 +144,9 @@ add todo: {% endif %} {% endfor %} - - - -{% for process in enablers_for[condition.id_] %} - -{% endfor %} - +{% set list_name = "todos_for_%s"|format(condition.id_) %} + +{{ macros.datalist_of_direct_titles(list_name, enablers_for[condition.id_]) }} {% endfor %} @@ -184,5 +176,6 @@ add todo: -{% endblock %} +{{ macros.datalist_of_titles("processes", processes) }} +{% endblock %}