delphimvcframework/samples/serversideviewcustom/bin/templates/people_list.html

36 lines
1.3 KiB
HTML
Raw Normal View History

2018-01-29 17:30:53 +01:00
<div class="row_fluid">
2017-10-09 10:41:38 +02:00
<div class="col-sm-12">
<table class="table table-striped">
<thead>
<tr>
<th>Customer</th>
<th>First Name</th>
<th>Last Name</th>
<th>&nbsp</th>
</tr>
</thead>
<tbody>
{{loop(people)}}
2017-10-09 10:41:38 +02:00
<tr>
<td>{{:people.customer}}</td>
<td>{{:people.contact_first}}</td>
<td>{{:people.contact_last}}</td>
2017-10-09 10:41:38 +02:00
<td class="text-right">
<a class="btn btn-default" href="javascript:alert('Not implemented, check the main demo');">
<span class="glyphicon glyphicon-pencil"></span> View</a>
</td>
</tr>
2020-09-16 15:56:14 +02:00
{{endloop}}
2017-10-09 10:41:38 +02:00
</tbody>
</table>
</div>
</div>
<br>
<div class="row_fluid">
<div class="col-sm-2">
<a class="btn btn-default btn-block" href="javascript:alert('Not implemented, check the main demo');">Export as CSV</a>
</div>
<div class="col-sm-2 col-sm-offset-8">
<a class="btn btn-primary btn-block" href="javascript:alert('Not implemented, check the main demo');">Add New Person</a>
</div>
</div>