complete dropdown

This commit is contained in:
Bronku 2025-01-29 19:04:08 +01:00
parent 2fde5056a0
commit 93ca9d278e
8 changed files with 103 additions and 24 deletions

View file

@ -15,7 +15,7 @@ type Controller struct {
func (c *Controller) LoadTemplates(fs fs.FS) {
c.tmpl = make(map[string]*template.Template)
c.tmpl["order/post_new"], _ = template.ParseFS(fs, "templates/order/post_new.html")
c.tmpl["order/get_new"], _ = template.ParseFS(fs, "templates/order/get_new.html")
c.tmpl["cake/options"], _ = template.ParseFS(fs, "templates/cake/options.html")
}
func (c *Controller) LoadRouter(pub fs.FS) {
@ -23,7 +23,7 @@ func (c *Controller) LoadRouter(pub fs.FS) {
serveMux.Handle("GET /", http.FileServerFS(unwrap(fs.Sub(pub, "public"))))
serveMux.HandleFunc("POST /order/new", c.postNewOrder)
serveMux.HandleFunc("GET /order/new", c.getNewOrder)
serveMux.HandleFunc("GET /cake/options", c.cakeOptions)
c.Handler = serveMux
}