34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
|
<script type="text/javascript" charset="utf8" src="/home/tomslater/Documents/FoodLoop-Web/src/sort-table.js"></script>
|
||
|
<div class="animated fadeIn">
|
||
|
<div class="form-group row">
|
||
|
<table class="table table-striped table-hover">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<th>Postcode</th>
|
||
|
<th>Spend</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<!-- table body - name, postcode and spend data should be presented here in cost descending order -->
|
||
|
<tr recur-result *ngFor="let recur of recurList" tr.names="name" tr.recur="recur" (onClick)="recurClick($event, template)"></tr>
|
||
|
<tr>
|
||
|
<td>Tom's Tippity Top Toenails Ltd.</td>
|
||
|
<td>LA11LY</td>
|
||
|
<td>£250,000.00</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Selena's Scratching Sticks Inc.</td>
|
||
|
<td>WS15PQ</td>
|
||
|
<td>£5.00</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Big Barry and Son's Balloon Store and Clown Outfits Corp.</td>
|
||
|
<td>PF43RD</td>
|
||
|
<td>£22.00</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div><!--/.col-->
|