admin page updates

This commit is contained in:
2026-02-13 20:51:39 +11:00
parent 01c6b5250f
commit 55f79176cc
34 changed files with 1737 additions and 164 deletions

View File

@@ -8,14 +8,14 @@ import (
)
type StringField struct {
Field
FieldBase
Value string
}
func newStringField(key string, g Getter) *StringField {
return &StringField{
Value: g.Get(key),
Field: newField(key, g),
Value: g.Get(key),
FieldBase: newField(key, g),
}
}