44 lines
No EOL
1.3 KiB
Smarty
44 lines
No EOL
1.3 KiB
Smarty
{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} |