2024-06-28 08:48:52 +00:00
|
|
|
package models
|
|
|
|
|
2024-06-30 15:08:47 +00:00
|
|
|
import "go-udemy-web-1/internal/forms"
|
|
|
|
|
2024-06-28 08:48:52 +00:00
|
|
|
// TemplateData holds data sent from handlers to templates
|
|
|
|
type TemplateData struct {
|
2024-07-22 08:00:17 +00:00
|
|
|
StringMap map[string]string
|
|
|
|
IntMap map[string]int
|
|
|
|
FloatMap map[string]float32
|
|
|
|
Data map[string]interface{}
|
|
|
|
Form *forms.Form
|
|
|
|
CSRFToken string
|
|
|
|
Flash string
|
|
|
|
Warning string
|
|
|
|
Error string
|
|
|
|
IsAuthenticated int
|
2024-06-28 08:48:52 +00:00
|
|
|
}
|