Real table added to new section with sample data, dashboard 'total spend' is still broken - I can't figure out how I broke it in the first place :(

This commit is contained in:
Felix 2019-07-04 16:10:50 +01:00
parent 55f3f50576
commit 1b56d6e95c

View file

@ -1,16 +1,33 @@
<div class="animated fadeIn"> <div class="animated fadeIn">
<div class="form-group row">
<table class="table table-striped table-hover"> <table class="table table-striped table-hover">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Postcode</th> <th>Postcode</th>
<th>Spend</th> <th>Spend</th>
<th>Cost</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr></tr> <!-- table body - name, postcode and spend data should be presented here in cost descending order -->
<!-- <tr recur-result *ngFor="let recur of recurList" [categories]="categories" [recur]="recur" (onClick)="recurClick($event, template)"></tr> -->
<tr>
<td>Supplier's Name</td>
<td>Supplier's Postcode</td>
<td>Supplier's Spend</td>
</tr>
<tr>
<td>Supplier 2's Name</td>
<td>Supplier 2's Postcode</td>
<td>Supplier 2's Spend</td>
</tr>
<tr>
<td>Supplier 3's Name</td>
<td>Supplier 3's Postcode</td>
<td>Supplier 3's Spend</td>
</tr>
</tbody> </tbody>
</table> </table>
</div> </div>
</div>