21 lines
No EOL
870 B
Smarty
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"> 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;"> <strong>{$fc.name}</strong></td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|