39 lines
No EOL
1.3 KiB
Smarty
39 lines
No EOL
1.3 KiB
Smarty
{if $wert !=0}
|
|
<div class="panel panel-warning">
|
|
<h4 align="center"><span style='color:#f05800;font-weight:bold;'>{$wert} Wetterwarnung</h4>
|
|
</div>
|
|
|
|
{foreach from=$uww item=uww}
|
|
<div class="panel panel-warning">
|
|
<div class="panel-body">
|
|
<table class="table-striped">
|
|
<tbody>
|
|
{if $uww.level <3}
|
|
<tr style="height: 3px;">
|
|
<td nowrap style="width:183px"><span style='color:#f05800;font-size:10pt;'>{$uww.text} für {$uww.stadt}</td>
|
|
</tr>
|
|
<!--
|
|
<tr style="height: 3px;">
|
|
<td nowrap style="width:360px"><span style='color:#f05800;font-size:10pt;'>von: {$uww.start} Uhr bis: {$uww.ende} Uhr</td>
|
|
</tr>
|
|
-->
|
|
{else}
|
|
<tr style="height: 3px;">
|
|
<td nowrap style="width:183px"><span style='color:#ff0000;font-size:10pt;'>{$uww.text} für {$uww.stadt}</td>
|
|
</tr>
|
|
<!--
|
|
<tr style="height: 3px;">
|
|
<td nowrap style="width:360px"><span style='color:#ff0000;font-size:10pt;'>von: {$uww.start} Uhr bis: {$uww.ende} Uhr</td>
|
|
</tr>
|
|
-->
|
|
{/if}
|
|
<tr style="height: 3px;">
|
|
<td nowrap style="width:183px"><span style='color:#ffffff;font-size:8pt;'>{$uww.info}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{/foreach}
|
|
{/if} |