{% extends "base.html" %} {% block content %}
{{ stats.open_tasks or 0 }}
Open Tasks
{{ stats.in_progress or 0 }}
In Progress
{{ stats.done_this_week or 0 }}
Done This Week
{{ focus_items|length }}
Today's Focus

Today's Focus

View All
{% if focus_items %} {% for item in focus_items %}
{{ item.title }} {% if item.project_name %} {{ item.project_name }} {% endif %}
{% endfor %} {% else %}
No focus items for today
Set Focus
{% endif %}

Upcoming

{% if overdue_tasks %}
OVERDUE
{% for t in overdue_tasks %}
{{ t.title }} {{ t.due_date }}
{% endfor %} {% endif %} {% if upcoming_tasks %}
NEXT 7 DAYS
{% for t in upcoming_tasks %}
{{ t.title }} {{ t.due_date }}
{% endfor %} {% endif %} {% if not overdue_tasks and not upcoming_tasks %}
No upcoming deadlines
{% endif %}
{% if overdue_projects or upcoming_projects %}

Project Deadlines

All Projects
{% if overdue_projects %}
OVERDUE
{% for p in overdue_projects %}
{{ p.name }} {% if p.domain_name %} {{ p.domain_name }} {% endif %}
{{ p.done_count }}/{{ p.task_count }} {{ p.target_date }}
{% endfor %} {% endif %} {% if upcoming_projects %}
NEXT 30 DAYS
{% for p in upcoming_projects %}
{{ p.name }} {% if p.domain_name %} {{ p.domain_name }} {% endif %}
{{ p.done_count }}/{{ p.task_count }} {{ p.target_date }}
{% endfor %} {% endif %}
{% endif %} {% endblock %}