mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 22:48:19 +00:00
* Tweaked: few styling improvements * Added: view label functions to customer portal components * Added: bulk dispatch * Fixed: route caching by generating and providing unique name via Fleetbase `RESTRegistrar` * Implemented: impersonation feature for system admin * Fixed: mail settings for smtp and added support for mailgun, sendgrid, postmark and resend * Removed: model cache * Improved test email HTML * Added: self hosted instance extension install instructions * Improved: Webhooks UI
24 lines
1.2 KiB
Handlebars
24 lines
1.2 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>
|
|
</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>
|