{% extends "base.html" %} {% block title %}Dashboard - MyOrg Assistant{% endblock %} {% block content %}

📊 Dashboard

{{ today }}

{{ stats.events_today }}
Events Today
{{ stats.priority_tasks }}
Priority Tasks
{{ stats.due_soon }}
Due Soon
{{ stats.active_projects }}
Active Projects

📅 Today's Schedule

{% if events %}
{% for event in events %}
{% if event.time %}{{ event.time.strftime('%H:%M') }}{% else %}All day{% endif %} {{ event.description }} {% for context in event.contexts %} @{{ context }} {% endfor %}
{% endfor %}
{% else %}

No events scheduled today

{% endif %}

✅ Priority Tasks

{% if priority_tasks %}
{% for task in priority_tasks %}
{{ task.priority }} {{ task.description }} {% for project in task.projects %} +{{ project }} {% endfor %}
{% endfor %}
View all → {% else %}

No priority tasks

{% endif %}

⏰ Due Soon

{% if due_soon %}
{% for task in due_soon %}
{{ task.description }} 📅 {{ task.due_date.strftime('%Y-%m-%d') }}
{% endfor %}
{% else %}

Nothing due soon

{% endif %}

📂 Active Projects

{% if active_projects %}
{% for project in active_projects %}
+{{ project.tag }} {{ project.description }}
{% endfor %}
View all → {% else %}

No active projects

{% endif %}
{% endblock %}