Dashboard nach Feld gruppieren und Verkaufs-Hinweise integrieren
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user