jb-data.de/template/tpl/ajax/free_ma.tpl
2025-08-11 22:23:30 +02:00

21 lines
No EOL
870 B
Smarty

<div class="panel panel-tbox">
<header class="panel-heading" style="font-size: 14pt">
<span style="font-size: 14pt" class="far fa-moon-stars pull-left"></span>
<span style="font-size: 9pt"> &nbsp;&nbsp;verfügbare Mitarbeiter</span>
</header>
<div class="panel-body">
<table class="no-style full" style="margin:-9px;line-height:20px">
{foreach from=$data item=fc }
<tr>
<td style="width:25px;font-size:12pt">
{if $fc.icon==0} <i class="far fa-user-check" style="color: forestgreen"></i> {/if}
{if $fc.icon==1} <i class="far fa-user-tag" style="color: orange"></i> {/if}
{if $fc.icon==2} <i class="far fa-user-times" style="color: crimson"></i> {/if}
</td>
<td nowrap style="width:200px;font-size:10pt;">&nbsp;<strong>{$fc.name}</strong></td>
</tr>
{/foreach}
</table>
</div>
</div>