{% extends "layout.html" %} {% import 'macros.html' as macros %} {% block heading %} {% endblock heading %} {% block content %}
{{ macros.task_heading('table', tasks) }}
{% for task in tasks %} {% endfor %}
Description Project Tags Due Priority
{{ task.description|urlize }} {% if task.annotations %}
    {% for ann in task.annotations %}
  • {{ ann.entry.strftime('%Y-%m-%d') }}: {{ ann|urlize }}
  • {% endfor %}
{% endif %}
{% if task.project %}{{ task.project }}{% endif %} {% for tag in task.tags %} {{ tag }}{% endfor %} {% if task.due %}{{ task.due.strftime('%Y-%m-%d') }}{% endif %} {% if task.priority %}{{ task.priority }}{% endif %}
{% if task.status not in ['deleted', 'completed'] %}
{% endif %} {% if task.status not in ['deleted', 'completed'] %} {% endif %}
{% for task in tasks %} {% endfor %}
{% endblock content %}