mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<div class="row_fluid">
|
|
<div class="col-sm-12">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Customer</th>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{loop(people)}}
|
|
<tr>
|
|
<td>{{:people.customer}}</td>
|
|
<td>{{:people.contact_first}}</td>
|
|
<td>{{:people.contact_last}}</td>
|
|
<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>
|
|
{{endloop}}
|
|
</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> |