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,44 @@
{if $fenster>0}
<!--
//---------------------------------------------------------------------------------
//------------ 1 rot
//------------ 2 gelb
//------------ 3 grün
//------------ 4 blau
//---------------------------------------------------------------------------------
-->
<div class="col-md-10">
<div class="panel panel-danger">
<table class="table">
<tbody>
{foreach from=$helpp item=ftrow}
{if $ftrow.anz==1} <tr class="danger"> {/if}
{if $ftrow.anz==2} <tr class="warning"> {/if}
{if $ftrow.anz==3} <tr class="success"> {/if}
{if $ftrow.anz==4} <tr class="info"> {/if}
<td align="left" nowrap style="width:80px;line-height:60%;font-size:10pt ">
<strong>{$ftrow.time|date_format:"%H:%M"} Uhr</strong>
</td>
<td align="left" nowrap style="width:140px;line-height:60%;font-size:10pt;">
<strong>{$ftrow.tour}</strong>
</td>
<td align="left" nowrap style="width:400px;line-height:60%;font-size:10pt">
<strong>{$ftrow.info}</strong>
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>
{/if}