mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
27 lines
752 B
Plaintext
27 lines
752 B
Plaintext
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">First name</th>
|
|
<th scope="col">Last name</th>
|
|
<th scope="col">Age</th>
|
|
<th scope="col"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{^people}}
|
|
<tr>
|
|
<td class="text-center" colspan="5"><<No People Found>></td>
|
|
</tr>
|
|
{{/people}} {{#people}}
|
|
<tr>
|
|
<td>{{-index}}</td>
|
|
<td>{{first_name}}</td>
|
|
<td>{{last_name}}</td>
|
|
<td>{{age}}</td>
|
|
<td class="text-right">{{>delete_person_link}} | {{>view_person_link}}</td>
|
|
</tr>
|
|
{{/people}}
|
|
</tbody>
|
|
</table>
|