jb-data.de/template/tpl/ajax/tuerlog3.tpl
2025-08-11 22:23:30 +02:00

21 lines
1.1 KiB
Smarty

{foreach from=$status item=status }
{if $status.zeit>$zeit_live}
<tr>
<td nowrap style="width:160px;font-size:11pt" align="left"><span style='color:#009900'>{$status.fahrer}</td>
<td nowrap style="width:170px;font-size:11pt" 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:160px;font-size:11pt" align="left"><span style='color:#FF9000'>{$status.fahrer}</td>
<td nowrap style="width:170px;font-size:11pt" align="right"><span style='color:#FF9000'>{$status.zeit|date_format:"%d.%m.%Y - %H:%M Uhr"}</td>
</tr>
{else}
<tr>
<td nowrap style="width:160px;font-size:11pt" align="left">{$status.fahrer}</td>
<td nowrap style="width:170px;font-size:11pt" align="right">{$status.zeit|date_format:"%d.%m.%Y - %H:%M Uhr"}</td>
</tr>
{/if}
{/foreach}