Merge branch 'manage-categories' of github.com:dballard/transmet into manage-categories
Conflicts: route_handlers.go templates/pages/categories.html
This commit is contained in:
commit
d0fbd617b3
|
@ -243,7 +243,6 @@ func addedHandler(w http.ResponseWriter, r *http.Request, user *user.User) {
|
||||||
ShowTemplate("added", w, map[string]interface{}{"user": user, "flashes": flashes})
|
ShowTemplate("added", w, map[string]interface{}{"user": user, "flashes": flashes})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func ServeFileHandler(res http.ResponseWriter, req *http.Request) {
|
func ServeFileHandler(res http.ResponseWriter, req *http.Request) {
|
||||||
fname := path.Base(req.URL.Path)
|
fname := path.Base(req.URL.Path)
|
||||||
http.ServeFile(res, req, "./"+fname)
|
http.ServeFile(res, req, "./"+fname)
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class="col-xs-12 category-row">
|
<div class="col-xs-12 category-row">
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{.Name}} <a href="/categories/delete?id={{.Id}}">delete</a>
|
{{.Name}} <a href="/categories/delete?id={{.Id}}">delete</a>
|
||||||
|
|
||||||
<select class="form-control category-change-parent" name="category-change-parent-{{.Id}}" >
|
<select class="form-control category-change-parent" name="category-change-parent-{{.Id}}" >
|
||||||
|
@ -29,10 +30,12 @@
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{{range $child := .Children}}
|
{{range $child := .Children}}
|
||||||
{{template "row-category" $child}}
|
{{template "row-category" $child}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{define "option-category"}}
|
{{define "option-category"}}
|
||||||
|
@ -40,4 +43,6 @@
|
||||||
{{range $child := .Children}}
|
{{range $child := .Children}}
|
||||||
{{template "option-category" $child}}
|
{{template "option-category" $child}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
=======
|
||||||
|
>>>>>>> fea21c9d10d89f90b71988dcb41722527b947f60
|
||||||
{{end}}
|
{{end}}
|
Loading…
Reference in New Issue