40 lines
1.8 KiB
Smarty
40 lines
1.8 KiB
Smarty
{if $anz>0}
|
|
|
|
<div class="panel panel-primary">
|
|
<table class="table-condensed">
|
|
<td nowrap style="width:70px; line-height:90%;font-size:18pt"><strong><span style='color:#FF6E00'>Tür: </strong></td>
|
|
<td nowrap style="width:310px;line-height:90%;font-size:18pt"><strong><span style='color:#66FFFF'>{$ma}</strong></td>
|
|
</table>
|
|
</div>
|
|
{/if}
|
|
|
|
<!-- ************************************************************************************************** -->
|
|
<div class="panel panel-primary">
|
|
<div class="panel-body" style="min-height:800px;max-height:900px;overflow-y: noscroll;">
|
|
{foreach from=$status item=status }
|
|
<table class="table-striped">
|
|
<tbody>
|
|
{if $status.zeit>$zeit_live}
|
|
<tr>
|
|
<td nowrap style="width:175px" align="left"><span style='color:#009900'>{$status.fahrer}</td>
|
|
<td nowrap style="width:170px" align="right"><span style='color:#009900'>{$status.zeit|date_format:"%d.%m.%y - %H:%M Uhr"}</td>
|
|
</tr>
|
|
|
|
{elseif $status.zeit>$zeit_online}
|
|
<tr>
|
|
<td nowrap style="width:175px" align="left"><span style='color:#FF9000'>{$status.fahrer}</td>
|
|
<td nowrap style="width:170px" align="right"><span style='color:#FF9000'>{$status.zeit|date_format:"%d.%m.%y - %H:%M Uhr"}</td>
|
|
</tr>
|
|
{else}
|
|
<tr>
|
|
<td nowrap style="width:175px" align="left"><span style='color:#808080'>{$status.fahrer}</td>
|
|
<td nowrap style="width:170px" align="right"><span style='color:#808080'>{$status.zeit|date_format:"%d.%m.%y - %H:%M Uhr"}</td>
|
|
</tr>
|
|
{/if}
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<!-- ************************************************************************************************** -->
|