init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
64
template/tpl/kalender_show.tpl
Normal file
64
template/tpl/kalender_show.tpl
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
<form action="" method="post">
|
||||
Marktplatz-Norm: <input type="text" style="width:30px;"name="mpnorm" /> <input type="submit" name="speichern" value="speichern" />
|
||||
</form>
|
||||
<form action="" method="post">
|
||||
Paketgewicht je.: <input type="text" style="width:30px;" name="gewicht" /> <input type="submit" name="speichern" value="speichern" />
|
||||
</form>
|
||||
<form action="" method="post">
|
||||
</select>
|
||||
<input type="date" name="dasdatum" value="{$time|date_format:"%d.%m.%Y"}" />
|
||||
<input type="submit" name="datesubmit" value="OK" >
|
||||
|
||||
|
||||
|
||||
|
||||
<form action="" method="post"> <input type="hidden" name="mid" value="{$mitarbeiter.id}" />
|
||||
Name<input type="text" name="name" value="{$mitarbeiter.name}" /> Mail<input type="text" name="mail" value="{$mitarbeiter.mail}" /> Handy<input type="text" name="handy" value="{$mitarbeiter.handy}" /> <input type="submit" name="save" value="Save" />
|
||||
</form>
|
||||
<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=$touren item=tour}
|
||||
|
||||
<tr>
|
||||
<form action="" method="post">
|
||||
<td><center><input type="text" value="{$tour.Tour}" style="width:80px;" name="Tour[{$tour.id}]"></center></td>
|
||||
<input type="hidden" value="{$tour.Auflage}" style="width:50px;" name="Auflage[{$tour.id}]">
|
||||
<td><center><input type="text" value="{$tour.Pakete}" style="width:50px;" name="Pakete[{$tour.id}]"></center></td>
|
||||
<td><center><input type="text" value="{$tour.Ladung}" style="width:50px;" name="Ladung[{$tour.id}]"></center></td>
|
||||
<td><center><input type="text" value="{$tour.Paket}" style="width:50px;" name="Paket[{$tour.id}]"></center></td>
|
||||
<td><center><input type="text" value="{$tour.Stellzeit}" style="width:50px;" name="Stellzeit[{$tour.id}]"></center></td>
|
||||
<input type="hidden" value="{$tour.StartRampe}" style="width:50px;" name="StartRampe[{$tour.id}]">
|
||||
<input type="hidden" value="{$tour.EndeRampe}" style="width:50px;" name="EndeRampe[{$tour.id}]">
|
||||
<td><center>
|
||||
<select name="Fahrer[{$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