init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
67
template/tpl/touren_show.tpl
Normal file
67
template/tpl/touren_show.tpl
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<br />
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue