{% import "desc.html" as desc %} {% if has_toast %}
{{ toast_msg }}
{% endif %}
{% set on_all = "all" %} {% set unique_tags = [] %} {% set tag_bar_key_comb = obj() %} {% set unique_id_kw = [] %} {% set task_action_bar_key_comb = obj() %} {% set on_complete = "complete" %} {% set on_pending = "pending" %} {% set on_waiting = "waiting" %} {% set mod_key = "" %}
{% include 'left_action_bar.html' %}
{% for f in current_filter %} {% set_global unique_tags = unique_tags | update_unique_tags(unique_tags=unique_tags, tag=f) %} {% set_global tag_bar_key_comb = tag_bar_key_comb | update_tag_bar_key_comb(tag_bar_key_comb=tag_bar_key_comb, tag=f) %} {% set kw_tag_bar = tag_bar_key_comb[f] %} {% endfor %}
{% if display_time_of_the_day == 1 %}
{% endif %} {% for task in tasks %} {% set status_color = on_all %} {% if task.status == 'pending' %} {% set status_color = on_pending %} {% elif task.status == 'complete' %} {% set status_color = on_complete %} {% elif task.status == 'waiting' %} {% set status_color = on_waiting %} {% endif %} {% endfor %}
ID Age Depends Project Tag Description Urg ACT DUE SCH END Recur
{% set_global unique_id_kw = unique_id_kw | update_unique_tags(unique_tags=unique_id_kw, tag=task.id | as_str) %} {% set_global task_action_bar_key_comb = task_action_bar_key_comb | update_tag_bar_key_comb(tag_bar_key_comb=task_action_bar_key_comb, tag=task.id | as_str) %} {% set kw_id = task_action_bar_key_comb[task.id] %}
{% set_global unique_id_kw = unique_id_kw | update_unique_tags(unique_tags=unique_id_kw, tag=task.id | as_str) %} {% set_global task_action_bar_key_comb = task_action_bar_key_comb | update_tag_bar_key_comb(tag_bar_key_comb=task_action_bar_key_comb, tag=task.id | as_str) %} {% set kw_id_details = task_action_bar_key_comb[task.id] %} {% if task.entry %}{{ date_proper(date=task.entry) }}{% endif %} {% if task.depends %} {% for uuid in task.depends %} {%if tasks_db[uuid] %}{{ tasks_db[uuid].id }}{% endif %} {% endfor %} {% endif %} {% if task.project %} {% endif %}
{% if task.tags %} {% for p in task.tags %} {% if p not in unique_tags %} {% set_global unique_tags = unique_tags | update_unique_tags(unique_tags=unique_tags, tag=p) %} {% set_global tag_bar_key_comb = tag_bar_key_comb | update_tag_bar_key_comb(tag_bar_key_comb=tag_bar_key_comb, tag=p) %} {% set kw = tag_bar_key_comb[p] %} {% endif %} {% endfor %} {% endif %} {% if task.priority %} {% endif %}
{{ desc::desc(task=task) }} {{ task.urgency }} {% if task.start %} {{ date_proper(date=task.start) }} {% endif %} {% if task.due and task.status != 'completed' %} {{ date_proper(date=task.due, in_future=true) }} {% endif %} {% if task.scheduled %} {{ date_proper(date=task.scheduled, in_future=true) }} {% endif%} {% if task.end %}{{ date_proper(date=task.end) }} {% else %}   {% endif %} {% if task.recur %}{{task.recur}}{% endif %}