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:
parent
55f3f50576
commit
1b56d6e95c
1 changed files with 31 additions and 14 deletions
|
@ -1,16 +1,33 @@
|
||||||
<div class="animated fadeIn">
|
<div class="animated fadeIn">
|
||||||
<table class="table table-striped table-hover">
|
<div class="form-group row">
|
||||||
<thead>
|
<table class="table table-striped table-hover">
|
||||||
<tr>
|
<thead>
|
||||||
<th>Name</th>
|
<tr>
|
||||||
<th>Postcode</th>
|
<th>Name</th>
|
||||||
<th>Spend</th>
|
<th>Postcode</th>
|
||||||
<th>Cost</th>
|
<th>Spend</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr></tr>
|
<!-- table body - name, postcode and spend data should be presented here in cost descending order -->
|
||||||
</tbody>
|
<!-- <tr recur-result *ngFor="let recur of recurList" [categories]="categories" [recur]="recur" (onClick)="recurClick($event, template)"></tr> -->
|
||||||
</table>
|
<tr>
|
||||||
</div>
|
<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>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
Reference in a new issue