aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/mini-need-list/mini-need-list.component.html
blob: 9febfa5fec35e8b3efd92914f1bb86ad323cbefa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div id="header">
    <span>{{jtitle}}</span>
    <a *ngIf="url" [routerLink]="url">Show All<span class="icon">arrow_forward_ios</span></a>
</div>

<div id="needList">
    <div class="needEntry" *ngFor="let need of needList" [routerLink]="'/need/'+need.id">
        <div>
            <span class="needName">{{need.name}}</span>
            <span class="needType">{{need.type}}</span>
        </div>
        <div>
            <span>{{need.current}}/{{need.maxGoal}}</span>
            <progress [max]="need.maxGoal" [value]="need.current"></progress>
        </div>
    </div>
</div>