35 lines
2.4 KiB
Smarty
35 lines
2.4 KiB
Smarty
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- ---------------------uebersicht Heute ------------------------------------------ -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<table class="table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:200px";align="left"><strong>Fahrer</strong></th>
|
|
<th nowrap style="width:100px";align="right"><strong>wie oft gefahren</strong></th>
|
|
<th style="width:200px";align="right"><strong>zuletzt am</strong></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$hinfo item=tour}
|
|
<tr>
|
|
<td nowrap style="width:200px"><b> {$tour.name}</td>
|
|
<td nowrap style="width:100px" align="right"> {$tour.zahl} x</td>
|
|
<td nowrap style="width:200px" align="right"> {$tour.last} Uhr</td>
|
|
|
|
<!-- --------------------------- fahrer -->
|
|
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|