jb-data.de/template/tpl/aender1.tpl
2025-08-11 22:23:30 +02:00

69 lines
2.4 KiB
Smarty

<!-- Left column/section -->
Änderung für diese KW:
<br />
<table class="datatable paginate sortable full">
<thead>
<tr>
<th>Tour</th>
<th>Pakete</th>
<th>Ladung</th>
<th>Paket</th>
<th>Stellzeit</th>
<th>Fahrer</th>
<th>Fahrzeug</th>
<th> </th>
</tr>
</thead>
<tbody>
{foreach from=$touren2 item=tour}
<tr>
<form action="" method="post">
<td><center><input type="text" value="{$tour.tag}" style="width:15px;" name="Tag[{$tour.id}]"></center></td>
<td><center><input type="text" value="{$tour.monat}" style="width:15px;" name="Monat[{$tour.id}]"></center></td>
<td><center><input type="text" value="{$tour.jahr}" style="width:15px;" name="Jahr[{$tour.id}]"></center></td>
<!-- fahrer -->
<td><center>
<select name="Fahrer[{$tour.id}]" style="width:100px;" >
<option value="{$tour.fahrer}" >{$tour.fahrer}</option>
{foreach from=$tour.fahrer_array item=allfahrer}
<option value="{$allfahrer.id}" >{$allfahrer.name}</option>
{/foreach}
</select>
</center></td>
<td><center><input type="text" value="{$tour.zeit}" style="width:50px;" name="Zeit[{$tour.id}]"></center></td>
<!-- gewicht = gewicht1 + gewicht2 + gewicht3 + gewicht4 + gewicht5 -->
<!-- auto -->
<td><center><input type="text" value="{$tour.infotext}" style="width:50px;" name="infotext[{$tour.id}]"></center></td>
<td><center>
<select name="drer[{$tour.id}]" style="width:100px;" >
<option value="{$tour.Fahrer}" >{$tour.Fahrer}</option>
{$option1}
</select>
</center></td>
<td><center>
<input type="text" value="{$tour.Fahrzeug}" style="width:90px;" name="Fahrzeug[{$tour.id}]">
</center></td>
<td><center>
<input type="image" name="savetour" value="{$tour.id}" src="template/images/icon/pencil.png" />
</center></td>
</form>
</tr>
{/foreach}
</tbody>
</table>