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,26 @@
<div class="panel panel-tbox">
<header class="panel-heading" style="font-size: 10pt;line-height:80%">
<span style="font-size: 14pt" class="far fa-moon-stars pull-left"></span>
<span style="font-size: 9pt"> &nbsp;&nbsp;verfügbare Fahrzeuge</span>
</header>
<div class="panel-body">
<table class="no-style full" style="margin:-9px;line-height:12px">
{foreach from=$data item=fc }
<tr>
<td style="width:30px;font-size:12pt">
{if $fc.typ==1} <i class="far fa-car-side" style="color: sandybrown"></i> {/if}
{if $fc.typ==2} <i class="far fa-shuttle-van" style="color: orange"></i> {/if}
{if $fc.typ==3} <i class="far fa-truck" style="color: deepskyblue"></i> {/if}
{if $fc.typ==4} <i class="far fa-truck" style="color: cadetblue"></i> {/if}
{if $fc.typ==5} <i class="far fa-truck-moving" style="color: darkgreen"></i> {/if}
{if $fc.typ==98}<i class="far fa-truck-plow" style="color: red"></i> {/if}
</td>
<td style="width:200px;font-size:10pt;">
<strong>{$fc.car}</strong></br>
<span style="width:145px;font-size: 7pt;">{$fc.info}</span>
</td>
</tr>
{/foreach}
</table>
</div>
</div>