Compare commits
2 Commits
25a3d87c0c
...
cb1a1e6f9d
Author | SHA1 | Date |
---|---|---|
Zynh0722 | cb1a1e6f9d | |
Zynh0722 | 1b22a6a31b |
|
@ -2,6 +2,6 @@
|
|||
|
||||
@(open_shift: &Shift)
|
||||
|
||||
<button hx-post="/api/shifts/@open_shift.id/close" hx-swap="outerHTML" hx-target="body" type="button">
|
||||
<button hx-post="/api/shifts/@open_shift.id/close" hx-swap="outerHTML" hx-target="body" type="button" class="focus:outline-none text-white bg-red-700 hover:bg-red-800 focus:ring-4 focus:ring-red-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2">
|
||||
Close Shift
|
||||
</button>
|
||||
|
|
|
@ -9,13 +9,13 @@
|
|||
</div>
|
||||
@if open_shift.is_some() {
|
||||
<div hx-boost="true" class="flex justify-center items-center">
|
||||
<a href="/shifts/@open_shift.unwrap().id/drinks">
|
||||
<a href="/shifts/@open_shift.unwrap().id/drinks" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 " >
|
||||
<button type="button">Drinks</button>
|
||||
</a>
|
||||
</div>
|
||||
}
|
||||
<div hx-boost="true" class="flex justify-center items-center">
|
||||
<a href="/management">
|
||||
<a href="/management" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 ">
|
||||
<button type="button">Management</button>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
@()
|
||||
|
||||
<button hx-post="/api/shifts/open" hx-swap="outerHTML" hx-target="body" type="button">
|
||||
<button hx-post="/api/shifts/open" hx-swap="outerHTML" hx-target="body" type="button" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 ">
|
||||
Open Shift
|
||||
</button>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
Dancers
|
||||
</h1>
|
||||
|
||||
<form hx-post="/api/dancers" hx-target="find #dancer_list" hx-swap="afterend" hx-on::after-request="if(event.detail.successful) this.reset()">
|
||||
<form hx-post="/api/dancers" hx-target="find #dancer_list" hx-swap="beforeend" hx-on::after-request="if(event.detail.successful) this.reset()">
|
||||
<table class="m-auto table-auto w-4/5">
|
||||
<thead class="text-xs text-gray-700 bg-gray-50">
|
||||
<tr>
|
||||
|
|
Loading…
Reference in New Issue