delphimvcframework/samples/serversideviews/templates/list.html
2015-10-18 16:34:10 +02:00

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>