summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-13 14:25:03 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-13 14:25:03 -1000
commitfbf803978e1512b6833188cd91a7f00df1244e8b (patch)
tree3a076139b043d1a7ed3799b890b7513215b2a3f9 /web
parenta7a9aa3dcfe4b90d9b32791c8313a0019ad11289 (diff)
Add Todoist tasks with completion checkboxes to Planning tab
Make Todoist tasks visible by integrating into Planning tab: - Add todoist-tasks template to planning-tab.html - Update HandlePlanning to fetch and pass Tasks data - Pass empty Projects slice (quick add form won't show initially) - Completion checkboxes now visible and functional Tasks with checkboxes now appear on Planning tab above Trello boards. Users can click checkboxes to complete tasks instantly. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'web')
-rw-r--r--web/templates/partials/planning-tab.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/templates/partials/planning-tab.html b/web/templates/partials/planning-tab.html
index e538578..06f85b3 100644
--- a/web/templates/partials/planning-tab.html
+++ b/web/templates/partials/planning-tab.html
@@ -1,5 +1,8 @@
{{define "planning-tab"}}
<div class="space-y-6">
+ <!-- Todoist Tasks Section -->
+ {{template "todoist-tasks" .}}
+
<!-- Trello Boards Section -->
{{template "trello-boards" .}}
</div>