{% extends 'base.html' %} {% block css %} tr.toplevel th { padding-right: 1em; } tr.toplevel td, tr.toplevel th { padding-top: 1em; } tr.lowlevel td, tr.lowlevel th { padding-top: 0em; } {% endblock %} {% block content %}

edit task

{% if task.parents %} {% endif %} {% for subtask in filtered_tasks %} {% endfor %}
add as todo to {{ selected_date }}
title
history
    {% for k,v in task.title.history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }} {% endfor %}
comment
default effort {% if task.subtasks %} {{ task.default_effort.now }} {% else %}
history
    {% for k,v in task.default_effort.history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }} {% endfor %}
{% endif %}
tags add: {{ macros.tagselection(submit_name='tag', selected_tags=task.tags.now, all_tags=tags) }}
history
    {% for k,v in task.tags.history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }} {% endfor %}
parents
children {% if task.subtasks %} {% for subtask in task.subtasks %} {% endfor %}
{{subtask.title.now}}
{% endif %}
add:
{% endblock %}