Files
Mastering-Node.js-Web-Devel…/Chapter 20/End of Chapter/sportsstore/templates/admin/area_buttons.handlebars
T
2024-05-29 18:54:49 +01:00

15 lines
550 B
Handlebars

<swap_wrapper hx-swap-oob="innerHTML:#area_buttons">
<div class="d-grid gap-2" >
<button id="products_btn" class="btn {{ buttonClass "products" mode }}"
hx-get="/api/products/table" hx-target="#content"
hx-push-url="/admin/products">
Products
</button>
<button id="orders_btn" class="btn {{ buttonClass "orders" mode }}"
hx-get="/api/orders/table" hx-target="#content"
hx-push-url="/admin/orders">
Orders
</button>
</div>
</swap_wrapper>