{% extends 'base.html' %} {% block css %} th.toplevel { padding-right: 1em; } input[type="submit"].delete { background-color: #ff7777; } div.delete { float: right; } td.center { text-align: center; } {% 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 tags | sort %} {% if tag in todo.task.tags.now %}  ✓ {% else %} {% endif %} {{ tag }}
{% endfor %} add:
parents
children {% for todo in child_todos %} {% endfor %} {% for todo in filtered_todos %} {% endfor %}
adoptefforttitlecomments
{{ '{:2.1f}'.format(todo.all_days_effort) }} {% if todo.done %}✓{% else %} {% endif %} {{todo.day.date}} {{todo.title}}
--------
{{ '{:2.1f}'.format(todo.all_days_effort) }} {% if todo.done %}✓{% else %} {% endif %} {{todo.day.date}} {{todo.title}}

{% include 'tagfilters.html' %}
from: to: search:
{% include 'watch_form.html' %} {% endblock %}