aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/mini-need-list/mini-need-list.component.html
blob: a2de9e595c00b24827994a1288cb5c5144d77f8c (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 [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>