clubmanager/templates/components/close_shift_button.rs.html

8 lines
179 B
HTML
Raw Normal View History

2023-09-26 17:00:01 -07:00
@use cm_lib::models::Shift;
2023-09-30 14:51:11 -07:00
@(open_shift: &Shift)
2023-09-26 17:00:01 -07:00
2023-09-30 14:51:11 -07:00
<button hx-post="/api/shifts/@open_shift.id/close" hx-swap="outerHTML" hx-target="body" type="button">
Close Shift
</button>