107 lines
No EOL
6.5 KiB
Smarty
107 lines
No EOL
6.5 KiB
Smarty
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- ---------------------uebersicht Heute ------------------------------------------ -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<div class="container">
|
|
<div class="row">
|
|
<section class="col-md-8">
|
|
<div class="panel panel-default collapsible">
|
|
<div class="panel-heading"><h2 class="panel-title">Tourenplanung {$tag1}</h2></div>
|
|
<div class="panel-body">
|
|
<table class="table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th align="left">Tour</th>
|
|
<th align="left">Zeit</th>
|
|
<th align="left">Fahrer</th>
|
|
<th align="left">Fahrzeug</th>
|
|
<th align="left">Bemerkung</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$tag_tour2 item=tour}
|
|
{if $tour.tour==99999999}
|
|
<tr>
|
|
<td><hr style="color: red; height: 1px;" /></td>
|
|
<td><hr style="color: red; height: 1px;" /></td>
|
|
<td><hr style="color: red; height: 1px;" /></td>
|
|
<td><hr style="color: red; height: 1px;" /></td>
|
|
<td><hr style="color: red; height: 1px;" /></td>
|
|
</tr>
|
|
{else}
|
|
<tr>
|
|
<td nowrap style="width:90px"><b> {$tour.tour}</td>
|
|
<td nowrap style="width:80px"> {$tour.zeit} Uhr</td>
|
|
{if $tour.fahrernichtda==0}<td nowrap style="width:160px"><span style='color:#000000'>{$tour.fahrer_name}</td>{/if}
|
|
{if $tour.fahrernichtda==1}<td nowrap style="width:160px"><b><span style='color:#FF0000'>{$tour.fahrer_name}</td>{/if}
|
|
{if $tour.fahrernichtda==2}<td nowrap style="width:160px"><b><span style='color:#000000'>{$tour.fahrer_name}</td>{/if}
|
|
|
|
|
|
{if $tour.autonichtda==0}<td nowrap style="width:80px"><span style='color:#000000'>{$tour.kennz}</td>{/if}
|
|
{if $tour.autonichtda==1}<td nowrap style="width:80px"><b><span style='color:#FF0000'>{$tour.kennz}</td>{/if}
|
|
{if $tour.autonichtda==2}<td nowrap style="width:80px"><b><span style='color:#000000'>{$tour.kennz}</td>{/if}
|
|
|
|
|
|
<td nowrap style="width:310px"><b> {$tour.infotext}</td>
|
|
|
|
<!-- --------------------------- fahrer -->
|
|
|
|
</tr>
|
|
{/if}
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- -------------------------------------------------------------------------------- -->
|
|
<!-- Sidebar ----------------------------------------------------------------------------------------------------------------->
|
|
<aside class="col-md-4">
|
|
<div id="rightmenu" class="panel panel-default">
|
|
<div class="panel-heading"><h2 class="panel-title">Liste erzeugen</h2></div>
|
|
<section class="panel-body">
|
|
<table class="no-style full">
|
|
<tbody>
|
|
<td> </td>
|
|
<td> <a class="btn btn-warning navbar-btn" href="?s=list_day&jahr={$jahr}&monat={$monat}&tag={$tag}">PDF / Tagliste</a> </td>
|
|
<td> </td>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</div>
|
|
<div id="rightmenu" class="panel panel-default">
|
|
<div class="panel-heading"><h2 class="panel-title">Personal-Info</h2></div>
|
|
<section class="panel-body">
|
|
<table class="table-condensed">
|
|
<tbody> {foreach from=$maf1 item=maf1 }
|
|
<td nowrap style="width:25px;font-size:11pt"><img src="/template/images/icon/{$maf1.icon}" width="24" height="24"/></td>
|
|
<td nowrap style="width:170px;font-size:11pt">{$maf1.fahrer}</td>
|
|
<td nowrap style="width:120px;font-size:11pt">{$maf1.bez}</td>
|
|
</tbody> {/foreach}
|
|
</table>
|
|
</section>
|
|
</div>
|
|
<div id="rightmenu" class="panel panel-default">
|
|
<div class="panel-heading"><h2 class="panel-title">Fahrzeug-Info</h2></div>
|
|
<section class="panel-body">
|
|
<table class="no-style full">
|
|
<tbody> {foreach from=$faf1 item=faf1 }
|
|
<td> {$faf1.fahrer}</td>
|
|
<td> <img src="/template/images/icon/{$faf1.icon}" width="16" height="16"/></td>
|
|
<td> {$faf1.bez}</td>
|
|
</tbody> {/foreach}
|
|
</table>
|
|
</section>
|
|
</div>
|
|
</aside>
|
|
<!-- Sidebar End -->
|
|
</div>
|
|
</div> |