blob: 2af467c196184aa07947e82dfcb08aed4912c965 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<h1>Admin 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="/basket"/>-->
<span>_ Registered users</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>
|