X-Git-Url: https://plomlompom.com/repos/?p=misc;a=blobdiff_plain;f=new_todo%2Fhtml%2Ftemplate.html;fp=new_todo%2Fhtml%2Ftemplate.html;h=35f69de35496fb139504d0230b0252974d803b89;hp=0000000000000000000000000000000000000000;hb=9637ae6c570e9cf0cce500d85af03c74d6771362;hpb=ecee822bebf62049803b90fc8d8a0b484915a0fc diff --git a/new_todo/html/template.html b/new_todo/html/template.html new file mode 100644 index 0000000..35f69de --- /dev/null +++ b/new_todo/html/template.html @@ -0,0 +1,22 @@ +{% extends 'base.html' %} + +{% block content %} +

edit template

+
+current title:
+{% for datetime, title in tmpl.title.history.items() %} +{{datetime}}: {{title|e}}
+{% endfor %} +current default effort:
+{% for datetime, default_effort in tmpl.default_effort.history.items() %} +{{datetime}}: {{default_effort}}
+{% endfor %} +current description:
+{% for datetime, description in tmpl.description.history.items() %} +{{datetime}}: {{description}}
+{% endfor %} + +
+{% endblock %} + +