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

edit todo

task{{ todo.task.title|e }}
default effort{{ todo.default_effort }}
day{{ todo.day.date }}
day effort
importance
comment
done
day tags {% for tag in db.t_tags | sort %} {% if tag in todo.task.tags %} ✓{% else %}{% endif %} {{ tag }}
{% endfor %} add:
{% endblock %}