2773fe200d
* Making the code Golint friendly * No exported variables when not needed * Same for functions * Simplifying Templates variables with a form basic template variable and a modelList basic template variable * Adapted templates to new template variables * use of .Models instead of model list * use of .Form instead of modelform * Small fix * Small fix 2 Forgot $.Form * Reverting templateDir as a var
17 lignes
381 o
Go
17 lignes
381 o
Go
package router
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// NotFoundHandler : Controller for displaying 404 error page
|
|
func NotFoundHandler(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
nftv := newCommonVariables(r)
|
|
|
|
err := notFoundTemplate.ExecuteTemplate(w, "index.html", nftv)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
}
|
|
}
|