mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-18 09:15:55 +01:00
18 lines
295 B
HTML
18 lines
295 B
HTML
|
<table class="table table-striped">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th>#</th>
|
|||
|
<th>First name</th>
|
|||
|
<th>Last name</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
{{#customers}}
|
|||
|
<tr>
|
|||
|
<td>{{-index}}</td>
|
|||
|
<td>{{firstName}}</td>
|
|||
|
<td>{{lastName}}</td>
|
|||
|
</tr>
|
|||
|
{{/customers}}
|
|||
|
</tbody>
|
|||
|
</table>
|