Skip to content

Instantly share code, notes, and snippets.

@skd1993
Last active September 16, 2018 06:32
Show Gist options
  • Save skd1993/e6ac03357b1eb913a76c3bb6ca0c02c9 to your computer and use it in GitHub Desktop.
Save skd1993/e6ac03357b1eb913a76c3bb6ca0c02c9 to your computer and use it in GitHub Desktop.
rent-list.component.html
<div>
<table>
<thead>
<tr>
<th>Previous Meter Reading</th>
<th>Current Meter Reading</th>
<th>Month</th>
<th>Year</th>
<th>Extras</th>
<th>Total (to be paid)</th>
<th>Paid</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let rent of rents_x">
<td>{{rent.meterPrev}}</td>
<td>{{rent.meterCurr}}</td>
<td>{{rent.month}}</td>
<td>{{rent.year}}</td>
<td>{{rent.extraCost}}</td>
<td>{{rent.totalSum}}</td>
<td>{{rent.paid}}</td>
</tr>
</tbody>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment