Add task completion toggle, custom task templates, and umlaut UI updates

This commit is contained in:
Kai
2026-02-16 13:40:02 +01:00
parent a1c1ef31a3
commit 723e9142b2
13 changed files with 548 additions and 118 deletions

View File

@@ -59,10 +59,31 @@ type CropStep struct {
Title string
}
type CustomTaskTemplate struct {
ID int64
Title string
}
type CustomTask struct {
ID int64
TemplateID sql.NullInt64
Title string
Month int
Day int
YearOffset int
TargetName string
Notes string
}
type Task struct {
UID string
Type string
Field string
Message string
Month int
Day int
YearOffset int
Completed bool
SortOrder int
}
@@ -123,6 +144,8 @@ type PlanningPage struct {
Crops []Crop
Plans []Plan
PlanningTargets []PlanningTarget
TaskTemplates []CustomTaskTemplate
CustomTasks []CustomTask
}
type GeneralPage struct {