Dashboard nach Feld gruppieren und Verkaufs-Hinweise integrieren

This commit is contained in:
Kai
2026-02-16 14:40:04 +01:00
parent b1c502a919
commit 2255318993
4 changed files with 66 additions and 25 deletions

View File

@@ -107,6 +107,7 @@ type MonthOption struct {
type CalendarDay struct {
Day int
Tasks []Task
Groups []FieldTaskGroup
}
type CalendarMonth struct {
@@ -123,11 +124,17 @@ type BasePage struct {
Info string
}
type FieldTaskGroup struct {
Field string
Tasks []Task
}
type DashboardPage struct {
BasePage
Settings Settings
CurrentMonth string
TodayTasks []Task
TodayGroups []FieldTaskGroup
Calendar []CalendarMonth
PlanningCount int
}