mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 06:15:51 +00:00
40 lines
1.3 KiB
Handlebars
40 lines
1.3 KiB
Handlebars
{{page-title (t "app.name")}}
|
|
<Layout::Container>
|
|
<Layout::Header
|
|
@brand={{@model}}
|
|
@menuItems={{this.menuItems}}
|
|
@organizationMenuItems={{this.organizationMenuItems}}
|
|
@userMenuItems={{this.userMenuItems}}
|
|
@onAction={{this.onAction}}
|
|
@showSidebarToggle={{true}}
|
|
@sidebarToggleEnabled={{this.sidebarToggleEnabled}}
|
|
@onSidebarToggle={{this.onSidebarToggle}}
|
|
/>
|
|
<Layout::Main>
|
|
<Layout::Sidebar @onSetup={{this.setSidebarContext}}>
|
|
<div class="next-sidebar-content-inner">
|
|
<div role="menu" id="sidebar-menu-items">
|
|
</div>
|
|
</div>
|
|
</Layout::Sidebar>
|
|
<Layout::Section>
|
|
{{outlet}}
|
|
</Layout::Section>
|
|
<ResourceContextPanel />
|
|
</Layout::Main>
|
|
<Layout::MobileNavbar
|
|
@brand={{@model}}
|
|
@user={{this.user}}
|
|
@organizations={{this.organizations}}
|
|
@menuItems={{this.menuItems}}
|
|
@extensions={{this.extensions}}
|
|
@onAction={{this.onAction}}
|
|
/>
|
|
</Layout::Container>
|
|
<ChatContainer />
|
|
<ConsoleWormhole />
|
|
<ImpersonatorTray />
|
|
{{! template-lint-disable no-potential-path-strings }}
|
|
<RegistryYield @registry="@fleetbase/console" as |RegistryComponent|>
|
|
<RegistryComponent @controller={{this}} />
|
|
</RegistryYield> |