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,39 @@
{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}