12 lines
No EOL
484 B
HTML
12 lines
No EOL
484 B
HTML
<div>
|
|
<h3>Cakes</h3>
|
|
<button hx-get="available_cakes" hx-swap="outerHTML" hx-target="closest div">back</button>
|
|
<button hx-get="cake_editor" hx-swap="innerHTML" hx-target="#cake_editor">New</button>
|
|
<div id="cakes">
|
|
{{range $key, $value := .}}
|
|
<button hx-get="cake_editor/{{$value.ID}}" hx-swap="innerHTML" hx-target="#cake_editor">{{$value.Name}}
|
|
{{$value.Price}}</button>
|
|
{{end}}
|
|
</div>
|
|
<div id="cake_editor"></div>
|
|
</div> |