diff --git a/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.html b/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.html index 01f88c7..40e4bcf 100644 --- a/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.html +++ b/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.html @@ -51,6 +51,15 @@ + +
diff --git a/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.ts b/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.ts index 33f484a..1ac5a30 100644 --- a/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.ts +++ b/APP/src/app/portals/user-portal/components/user-navbar/user-navbar.component.ts @@ -68,8 +68,15 @@ export class UserNavbarComponent implements OnInit, OnDestroy { { text: 'User Management', icon: userIcon, path: '/user-portal/admin/users' }, ]; + public financeNavItems: NavItem[] = [ + { text: 'Offering Entry', icon: this.creditCardIcon, path: '/user-portal/finance/offering-session' }, + { text: 'Givings', icon: this.chartIcon, path: '/user-portal/finance/givings' }, + { text: 'Giving Types', icon: this.buildingIcon, path: '/user-portal/finance/giving-categories' }, + ]; + public showMemberAdminSection = false; public showUserAdminSection = false; + public showFinanceSection = false; private destroy$ = new Subject