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,25 @@
<div id="tinfo" class="panel panel-tbox">
<header class="panel-heading" style="font-size: 14pt;line-height:80%"><spawn class="fad fa-clipboard-list-check pull-left"></spawn>
<div class="panel-title">&nbsp;&nbsp;Planungshistory {$touranz}</div>
</header>
<div class="panel-body">
<table class="no-style full" style="margin: -10px">
<tbody>
{foreach from=$data item=ti }
<tr align="right">
<td align="left" style="width:290px;font-size:10pt;">&nbsp;<strong>{$ti.name}</strong></td>
{if $ti.menge==1} <td style="width:60px;font-size: 10pt;color:#B50000"> <strong>{$ti.zahl} x </strong></td> {/if}
{if $ti.menge==2} <td style="width:60px;font-size: 10pt;color: orange"> <strong>{$ti.zahl} x </strong></td> {/if}
{if $ti.menge==3} <td style="width:60px;font-size: 10pt;color:#3c763d"> <strong>{$ti.zahl} x </strong></td> {/if}
{if $ti.status==1} <td style="width:70px;font-size: 7pt;color:#3c763d">&nbsp;<strong> {$ti.last}</strong></td> {/if}
{if $ti.status==2} <td style="width:70px;font-size: 7pt;color: orange">&nbsp;<strong> {$ti.last}</strong></td> {/if}
{if $ti.status==3} <td style="width:70px;font-size: 7pt;color:#B50000">&nbsp;<strong> {$ti.last}</strong></td> {/if}
</tr>
{/foreach}
</table>
</div>
</div>