blob: 3739143880d9c7b6708c3161b9d89685c67dcf8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package view
import (
"net/http"
"strconv"
"xengineering.eu/ceres/model"
"github.com/gorilla/mux"
)
func Recipe(w http.ResponseWriter, r *http.Request) {
id_str := mux.Vars(r)[`id`]
id, _ := strconv.Atoi(id_str)
recipe := model.Recipe{}
recipe.Id = int64(id)
err := recipe.Read()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
err = html.ExecuteTemplate(w, "recipe", recipe)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
|