50 lines
No EOL
2.6 KiB
Smarty
50 lines
No EOL
2.6 KiB
Smarty
<div class="panel panel-primary">
|
|
<!-- <div class="panel-heading" align="left">Kalender Heute ({$datum})</div> -->
|
|
{if $platz==0} <div class="panel-body" style="min-height:265px;max-height:265px;overflow-y: scroll;"> {/if}
|
|
{if $platz==1} <div class="panel-body" style="min-height:195px;max-height:200px;overflow-y: scroll;"> {/if}
|
|
{if $platz==2} <div class="panel-body" style="min-height:175px;max-height:180px;overflow-y: scroll;"> {/if}
|
|
{if $platz==3} <div class="panel-body" style="min-height:155px;max-height:160px;overflow-y: scroll;"> {/if}
|
|
{if $platz >3} <div class="panel-body" style="min-height:155px;max-height:160px;overflow-y: scroll;"> {/if}
|
|
<table class="no-style full">
|
|
<tbody>
|
|
{foreach from=$kal item=kal}
|
|
<tr>
|
|
<!-- <td class="table-icon-cell"><i style="width:25px;font-size:13pt" class="{$kal.icon}";"></i></td> -->
|
|
<!-- <td nowrap style="width:30px;font-size:10pt" align="left"><img src="/template/images/icon/{$kal.icon}" width="16" height="16"/></td> -->
|
|
<td nowrap style="width: 30px;font-size:11pt" align="left"><i class='{$kal.icon}'></i></td>
|
|
<td nowrap style="width:170px;font-size:11pt" align="left">{$kal.fahrer}</td>
|
|
<td nowrap style="width:125px;font-size:10pt" align="left">{$kal.bez}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{if $platz!=0}
|
|
<div class="panel panel-primary">
|
|
<!-- <div class="panel-heading" align="left">Kalender Heute ({$datum})</div> -->
|
|
{if $platz==1} <div class="panel-body" style="min-height:50px;max-height:50px;overflow-y: noscroll;"> {/if}
|
|
{if $platz==2} <div class="panel-body" style="min-height:70px;max-height:70px;overflow-y: noscroll;"> {/if}
|
|
{if $platz==3} <div class="panel-body" style="min-height:90px;max-height:95px;overflow-y: noscroll;"> {/if}
|
|
{if $platz >3} <div class="panel-body" style="min-height:90px;max-height:95px;overflow-y: scroll;"> {/if}
|
|
<table class="no-style full">
|
|
<tbody>
|
|
{foreach from=$data item=data}
|
|
<tr>
|
|
<!-- <td class="table-icon-cell"><i style="width:25px;font-size:13pt" class="{$kal.icon}";"></i></td>
|
|
<td nowrap style="width:30px;font-size:10pt" align="left"><img src="/template/images/icon/{$kal.icon}" width="16" height="16"/></td>
|
|
-->
|
|
<td nowrap style="width:130px;font-size:11pt;color:royalblue" align="left"><mark>{$data.tour}</mark></td>
|
|
<td nowrap style="width:170px;font-size:11pt" align="right">{$data.name}</td>
|
|
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{/if} |