27 lines
No EOL
834 B
Smarty
27 lines
No EOL
834 B
Smarty
<div class="panel panel-tbox">
|
|
<header class="panel-heading" style="font-size: 14pt">
|
|
<span style="font-size: 14pt" class="far fa-person-sign"></span>
|
|
<span style="font-size: 12pt"> {$datum}</span>
|
|
</header>
|
|
<div class="panel-body">
|
|
<table class="no-style full" style="margin:-9px;line-height:12px">
|
|
{foreach from=$kald item=kal }
|
|
<tr>
|
|
<td style="width:30px;font-size:12pt">
|
|
{if $kal.na!=0}
|
|
<i class='{$kal.icon}' style="color:#b50000"></i>
|
|
{else}
|
|
<i class='{$kal.icon}' style="color: orange"></i>
|
|
{/if}
|
|
</td>
|
|
<td style="width:200px;font-size:10pt;">
|
|
<strong>{$kal.fahrer}</strong></br>
|
|
<span style="width:145px;font-size: 7pt;">{$kal.bez}</span>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
|