web provider renderer
This commit is contained in:
parent
f6d587b16a
commit
d3071ca110
2 changed files with 1 additions and 8 deletions
9
web.go
9
web.go
|
@ -7,7 +7,6 @@ import (
|
||||||
"github.com/gorilla/handlers"
|
"github.com/gorilla/handlers"
|
||||||
"github.com/unrolled/render"
|
"github.com/unrolled/render"
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"log"
|
"log"
|
||||||
|
@ -50,11 +49,5 @@ func GetConfigHandler(rw http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetHtmlConfigHandler(response http.ResponseWriter, request *http.Request) {
|
func GetHtmlConfigHandler(response http.ResponseWriter, request *http.Request) {
|
||||||
templates := template.Must(template.ParseFiles("configuration.html"))
|
renderer.HTML(response, http.StatusOK, "configuration", Page{Configuration:*currentConfiguration})
|
||||||
response.Header().Set("Content-type", "text/html")
|
|
||||||
err := request.ParseForm()
|
|
||||||
if err != nil {
|
|
||||||
http.Error(response, fmt.Sprintf("error parsing url %v", err), 500)
|
|
||||||
}
|
|
||||||
templates.ExecuteTemplate(response, "configuration.html", Page{Configuration:*currentConfiguration})
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue