// BELOW DECK
REFRESH
COCKPIT
COMMAND DECK
OFFLINE
+ ADD
#work
#home
#errand
#personal
// Open
{% set open_tasks = tasks | selectattr('status', 'equalto', 'open') | list %} {% if open_tasks %} {% for task in open_tasks %}
⠿
{{ task.title }}
{% if task.tag %}
#{{ task.tag }}
{% endif %}
✎
→
✕
{% endfor %} {% else %}
Clear skies. Nothing below deck.
{% endif %}
// Today's Wins
CLEAR
{% for task in completed_tasks %}
✓
{{ task.title }}
{% if task.tag %}
#{{ task.tag }}
{% endif %}
✕
{% endfor %}
{% include 'includes/today_panel.html' %} {% include 'includes/active_timer_strip.html' %}