41 lines
1.8 KiB
Smarty
41 lines
1.8 KiB
Smarty
{if $anzeige>0}
|
|
<div class="panel panel-danger">
|
|
{else}
|
|
<div class="panel panel-default">
|
|
{/if}
|
|
<div class="panel-heading" align="left">Fahrzeug-Termine</div>
|
|
<div class="panel-body" style="min-height:220px;max-height:220px;overflow-y: scroll;">
|
|
<table class="no-style full">
|
|
<tbody>
|
|
{foreach from=$sanidata item=sanidata}
|
|
<tr>
|
|
<td nowrap style="width:100px;font-size:11pt">{$sanidata.kz}</td>
|
|
<td nowrap style="width:120px;font-size:11pt">Sanikasten</td>
|
|
{if $sanidata.typ==1}<td nowrap style="width:100px;font-size:11pt"><span style='color:#ff0000'>{$sanidata.sanidate|date_format:"%m / %Y"}</td>{/if}
|
|
{if $sanidata.typ==2}<td nowrap style="width:100px;font-size:11pt"><span style='color:#FBAD06'>{$sanidata.sanidate|date_format:"%m / %Y"}</td>{/if}
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<table class="no-style full">
|
|
<tbody>
|
|
{foreach from=$hudata item=hudata}
|
|
<tr>
|
|
<td nowrap style="width:100px;font-size:11pt">{$hudata.kz}</td>
|
|
<td nowrap style="width:120px;font-size:11pt">HU / AU</td>
|
|
{if $hudata.typ==1}<td nowrap style="width:100px;font-size:11pt"><span style='color:#ff0000'>{$hudata.hudate|date_format:"%m / %Y"}</td>{/if}
|
|
{if $hudata.typ==2}<td nowrap style="width:100px;font-size:11pt"><span style='color:#FBAD06'>{$hudata.hudate|date_format:"%m / %Y"}</td>{/if}
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|