This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{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}