{% 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 task

title
history
    {% for k,v in task.title_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
default weight
history
    {% for k,v in task.default_weight_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
tags {% for tag in db.t_tags | sort %} {{ tag }}
{% endfor %} add:
history
    {% for k,v in task.tags_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
links {% for other_task_id, other_task in db.tasks.items() | sort(attribute='1.title') %} {% if task.id_ != other_task_id and other_task.visible and other_task_id in task.links %} {{ other_task.title|e }}
{% endif %} {% endfor %} {% for other_task_id, other_task in db.tasks.items() | sort(attribute='1.title') %} {% if task.id_ != other_task_id and other_task.visible and not other_task_id in task.links %} {{ other_task.title|e }}
{% endif %} {% endfor %}
{% include 'tagfilters.html' %}
{% include 'watch_form.html' %} {% endblock %}