{% import "desc.html" as desc %} {% if has_toast %}
{{ toast_msg }}
{% endif %}
{% set on_all = "all" %} {% set on_complete = "btn-success" %} {% set on_pending = "btn-warning" %} {% set on_waiting = "btn-accent" %} {% set mod_key = "" %}
{% include 'left_action_bar.html' %}
{% for f in current_filter %} {% endfor %}
{% if display_time_of_the_day == 1 %}
{% endif %}
    {% for task in tasks %}
  • {{ desc::desc(task=task) }}
    {% if task.project %} {% for p in task.project | split(pat=".") %} {% set ptag = ["project", p] | join(sep=":") %} {% endfor %} {% endif %} {% if task.priority %} {% endif %} {% if task.tags %} {% for p in task.tags %} {% endfor %} {% else %} {% endif %}
    {% if task.depends %} {% for uuid in task.depends %} {%if tasks_db[uuid] %} {% endif %} {% endfor %} {% endif %} {% if task.urgency > 20 %}
    {{ task.urgency }}
    {% elif task.urgency > 10 %}
    {{ task.urgency }}
    {% else %}
    {{ task.urgency }}
    {% endif %} {% if task.due and task.status != 'completed' %}
    {{ date_proper(date=task.due, in_future=true) }}
    {% endif %} {% if task.start %}
    {{ date_proper(date=task.start) }}
    {% endif %} {% if task.end %}
    {{ date_proper(date=task.end) }}
    {% endif %}
    {% if task.entry %}{{ date_proper(date=task.entry) }}{% endif %}
  • {% endfor %}