clubmanager/templates/home.rs.html
Zynh0722 bfb697e3b9 handle hx-request for home page
TODO: I want to handle fragments from rust, not the ructe compilation
2023-11-05 11:32:59 -08:00

13 lines
272 B
HTML

@use super::base_html;
@use super::components::home_fragment_html;
@use cm_lib::models::Shift;
@(open_shift: Option<Shift>, include_base: bool)
@if include_base {
@:base_html({
@:home_fragment_html(open_shift)
})
} else {
@:home_fragment_html(open_shift)
}