34 lines
No EOL
1.2 KiB
Smarty
34 lines
No EOL
1.2 KiB
Smarty
<div class="panel panel-primary">
|
|
<div class="panel-body" style="min-height:150px;max-height:150px;overflow-y: scroll;">
|
|
{foreach from=$infop item=infop }
|
|
<span style='color:#FF0000;width:20px;font-size:8pt'><mark>{$infop.von}: {$infop.zeit|date_format:"%d.%m.%Y - %H:%M"} Uhr: </mark></span>
|
|
{if $infop.wichtig>0}
|
|
<span style='color:#FF0000'> {$infop.info}</span>
|
|
{else}
|
|
<span style='color:#000000'> {$infop.info}</strong>
|
|
{/if}
|
|
<br>
|
|
{/foreach}
|
|
</div>
|
|
</div>
|
|
<!--
|
|
|
|
|
|
<div class="panel-body" style="min-height:250px;max-height:250px;overflow-y: scroll;">
|
|
<table class="table table-dcondensed">
|
|
<tbody>
|
|
{foreach from=$infop item=infop }
|
|
<tr><H6>{$infop.von|utf8_encode}: {$infop.zeit|date_format:"%d.%m.%Y - %H:%M"} Uhr</H6></tr>
|
|
{if $infop.wichtig>0}
|
|
<i class="fa fa-exclamation fa-border" style="color: red;" aria-hidden="true"></i>
|
|
<tr><strong><span style='color:#FF0000'> {$infop.info|utf8_encode}</strong></H5></tr>
|
|
{else}
|
|
<i class="fa fa-info fa-border" aria-hidden="true"></i>
|
|
<tr><strong> {$infop.info|utf8_encode}</strong></H5></tr>
|
|
{/if}
|
|
<hr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
--> |