layout fix
This commit is contained in:
parent
c540ccc28e
commit
b206f00c96
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ func New(store *store.Store) *Server {
|
|||
mux.HandleFunc("GET /order/{id}", render("Zamówienie", server.order, templates.OrderForm))
|
||||
mux.HandleFunc("POST /order", render("Potwierdzenie", server.postOrder, templates.Confirmation))
|
||||
mux.HandleFunc("POST /order/{id}", render("Potwierdzenie", server.postOrder, templates.Confirmation))
|
||||
// mux.HandleFunc("GET /orders", render(server.orders))
|
||||
mux.HandleFunc("GET /orders", render("Zamówienia", server.orders, templates.Orders))
|
||||
// mux.HandleFunc("GET /cake", render(server.cake))
|
||||
// mux.HandleFunc("GET /cakes", render(server.cakes))
|
||||
// mux.HandleFunc("POST /order/{id}/status", render(server.updateStatus))
|
||||
|
|
|
|||
|
|
@ -81,6 +81,6 @@ main {
|
|||
grid-template-rows: auto auto auto 1fr;
|
||||
> aside {
|
||||
grid-column: 2;
|
||||
grid-row: span;
|
||||
grid-row: 1 / span 3;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue