@if (accountService.currentUser$ | async; as user) { @if((navService.sideNavCollapsed$ | async) === false) {
@for(section of sections; track section.title + section.children.length; let idx = $index;) { @if (hasAnyChildren(user, section)) {
{{t(section.title)}}
@for(item of section.children; track item.fragment) { @if (accountService.hasAnyRole(user, item.roles, item.restrictRoles)) { } } } }
@if (utilityService.activeBreakpoint$ | async; as breakpoint) { @if (breakpoint < Breakpoint.Desktop) {
} } } }