clubmanager/templates/home.rs.html

14 lines
272 B
HTML
Raw Permalink Normal View History

2023-09-21 17:44:53 +00:00
@use super::base_html;
2023-11-05 10:26:14 +00:00
@use super::components::home_fragment_html;
@use cm_lib::models::Shift;
2023-09-21 17:44:53 +00:00
@(open_shift: Option<Shift>, include_base: bool)
2023-09-21 17:44:53 +00:00
@if include_base {
@:base_html({
@:home_fragment_html(open_shift)
})
} else {
2023-11-04 09:11:30 +00:00
@:home_fragment_html(open_shift)
}