diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-28 21:37:28 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-28 21:37:28 -0400 |
commit | e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9 (patch) | |
tree | 921b54a870974a30612b8b079bdfd55570326f42 /ufund-ui/src/app/components/dashboard/dashboard.component.html | |
parent | fb4e2bc3eb66ca861eb8393ade21811e4510669a (diff) | |
download | JellySolutions-e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9.tar.gz JellySolutions-e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9.tar.bz2 JellySolutions-e1eb3f16e10042c2539b56d6c2d2e33f07abf7d9.zip |
Implement new dashboard and mini-need-list
Diffstat (limited to 'ufund-ui/src/app/components/dashboard/dashboard.component.html')
-rw-r--r-- | ufund-ui/src/app/components/dashboard/dashboard.component.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.html b/ufund-ui/src/app/components/dashboard/dashboard.component.html index a1151b7..330d1f3 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.html +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.html @@ -1,4 +1,5 @@ -<h1>Dashboard</h1> -<app-cupboard></app-cupboard> -<app-funding-basket *ngIf="!isManager()"></app-funding-basket>
\ No newline at end of file +<h1>Your Dashboard</h1> +<app-mini-need-list [needList]="topNeeds" jtitle="Top needs" url="/cupboard"/> +<app-mini-need-list [needList]="almostThere" jtitle="Almost there" url="/cupboard"/> +<app-mini-need-list [needList]="inBasket" jtitle="In your basket" url="/cupboard"/> |