28 lines
No EOL
1.2 KiB
Smarty
28 lines
No EOL
1.2 KiB
Smarty
<div style="background-color: gray;color: #dddddd">
|
|
{if $anz==0} <i class="fas fa-door-open fa-7x fa-pull-left" style="color: #115270"></i>{/if}
|
|
{if $anz==1} <i class="fas fa-door-open fa-7x fa-pull-left" style="color: orange"></i>{/if}
|
|
{if $anz==2} <i class="fas fa-door-open fa-7x fa-pull-left" style="color: #41c42b"></i>{/if}
|
|
|
|
<table class="no-style full" style="background-color: gray;color: #dddddd;font-size:11pt">
|
|
{foreach from=$status item=tuer}
|
|
<tr>
|
|
{if $tuer.zeit>$zeit_live}
|
|
<td nowrap style="width:200px;color:#41c42b">{$tuer.fahrer}</td>
|
|
<td nowrap style="width: 80px;color:#41c42b" align="right">{$tuer.zeit|date_format:"%H:%M Uhr"}</td>
|
|
|
|
{elseif $tuer.zeit>$zeit_online}
|
|
<td nowrap style="width:200px;color: orange">{$tuer.fahrer}</td>
|
|
<td nowrap style="width: 80px;color: orange" align="right">{$tuer.zeit|date_format:"%H:%M Uhr"}</td>
|
|
|
|
{else}
|
|
<td nowrap style="width:200px">{$tuer.fahrer}</td>
|
|
<td nowrap style="width: 80px" align="right">{$tuer.zeit|date_format:"%H:%M Uhr"}</td>
|
|
|
|
{/if}
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|