Changed name of new-section to suppliers
This commit is contained in:
parent
1b56d6e95c
commit
ee636b87fa
6 changed files with 25 additions and 17 deletions
33
src/app/dashboard/suppliers.component.html
Normal file
33
src/app/dashboard/suppliers.component.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<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>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