feat: add a tab for overdue tasks

This commit is contained in:
2025-11-08 10:42:55 +01:00
parent 64380dab6a
commit fe00b91658

View File

@@ -21,6 +21,8 @@
class="filter-tab {{ 'active' if filter_type == 'today' else '' }}">Today</a>
<a href="{{ url_for('tasks.index', filter='upcoming') }}"
class="filter-tab {{ 'active' if filter_type == 'upcoming' else '' }}">Upcoming</a>
<a href="{{ url_for('tasks.index', filter='overdue') }}"
class="filter-tab {{ 'active' if filter_type == 'overdue' else '' }}">Overdue</a>
<a href="{{ url_for('tasks.index', filter='active') }}"
class="filter-tab {{ 'active' if filter_type == 'active' else '' }}">Active</a>
<a href="{{ url_for('tasks.index', filter='completed') }}"