diff options
author | Hayden Hartman <haydenhartman10@gmail.com> | 2025-04-04 16:23:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-04 16:23:52 -0400 |
commit | 5a5d31896d79a736bce33b7d1aa7b3168ba308a9 (patch) | |
tree | a1e1862c0bb545bf8f9a642035fe5a791139ce27 /ufund-ui/src/app/components/dashboard/dashboard.component.html | |
parent | 8cdf84ae4a6765db8f462cc71e2685c1d3514f08 (diff) | |
parent | 0a876b31609144c62f312ea59f074f5f79b67ae7 (diff) | |
download | JellySolutions-5a5d31896d79a736bce33b7d1aa7b3168ba308a9.tar.gz JellySolutions-5a5d31896d79a736bce33b7d1aa7b3168ba308a9.tar.bz2 JellySolutions-5a5d31896d79a736bce33b7d1aa7b3168ba308a9.zip |
Merge pull request #28 from RIT-SWEN-261-02/css
css-merge
Diffstat (limited to 'ufund-ui/src/app/components/dashboard/dashboard.component.html')
-rw-r--r-- | ufund-ui/src/app/components/dashboard/dashboard.component.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.html b/ufund-ui/src/app/components/dashboard/dashboard.component.html index 2d7b4c3..2af467c 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.html +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.html @@ -4,7 +4,11 @@ <!--<app-mini-need-list [needList]="almostThere" jtitle="Almost there" url="/cupboard"/>--> <!--<app-mini-need-list [needList]="inBasket" jtitle="In your basket" url="/basket"/>--> <span>_ Registered users</span> -<span>_ Needs with overflow</span> -<span>_ Needs in peoples baskets</span> +<span *ngIf="count"> {{count | async}} </span> +<span>_ Fulfilled needs</span> +<app-mini-need-list [needList]="fulfilledNeeds.getValue()" jtitle="Fulfilled needs"> </app-mini-need-list> +<span>_ Most fulfilled needs</span> +<app-mini-need-list [needList]="mostFulfilledNeeds.getValue()" jtitle="Most fulfilled"> </app-mini-need-list> <span>_ Total monetary contributions</span> +<span *ngIf="totalDonations">${{totalDonations | async}} </span> <span>_ </span> |