{% extends 'base.html' %} {% block css %} th, td { vertical-align: top; text-align: left} td.checkbox { width: 0.1em; height: 0.1em; padding: 0em; text-align: center; } input[type="number"] { text-align: right; } {% endblock %} {% block content %}

edit todo

task{{ todo.task.title.then|e }}
default effort{{ todo.default_effort }}
efforts {% for date, effort in todo.efforts.items() %} {% endfor %}
dateeffortdelete
{% if not (todo.children and effort) %}{% endif %}
total effort{{todo.all_days_effort}}
importance
comment
done {% if todo.children %}✓{% else %}{% endif %}
day tags {% for tag in db.t_tags | sort %} {% if tag in todo.task.tags.now %} ✓{% else %}{% endif %} {{ tag }}
{% endfor %} add:
parent{% if todo.parent %}{{todo.parent.title}}{% else %}–{% endif %}
children {% for todo in child_todos %} {% endfor %}
{% if todo.done %}✓{% endif %}{{todo.all_days_effort}} {{todo.title}}
{% endblock %}