admin page updates

This commit is contained in:
2026-02-13 20:51:39 +11:00
parent f51053212e
commit 295e373f37
34 changed files with 1737 additions and 164 deletions

View File

@@ -8,7 +8,7 @@ import (
)
type TimeField struct {
Field
FieldBase
Value time.Time
}
@@ -26,8 +26,8 @@ func newTimeField(key string, format *timefmt.Format, g Getter) *TimeField {
}
}
return &TimeField{
Value: startDate,
Field: newField(key, g),
Value: startDate,
FieldBase: newField(key, g),
}
}