init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
84
template/tpl/mitarbeiter_show.tpl
Normal file
84
template/tpl/mitarbeiter_show.tpl
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
|
||||
<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}" /> <br /><br />
|
||||
|
||||
Geburtstag:
|
||||
<input type="text" name="tag" value="{$mitarbeiter.gebtag}" style="width:17px"/>
|
||||
<input type="text" name="monat" value="{$mitarbeiter.gebmonat}" style="width:17px"/>
|
||||
<input type="text" name="jahr" value="{$mitarbeiter.gebjahr}" style="width:30px"/>
|
||||
<br /><br /><br /><br />
|
||||
|
||||
Info: 0-faehrt so etwas nicht *** 1-muss das fahren *** 2-kann das fahren !!!!!<br /><br />
|
||||
|
||||
aktiv:<input type="text" name="handy" value="{$mitarbeiter.handy}" style="width:10px"/><br />
|
||||
LVZ-Tour :<input type="text" name="lvz" value="{$mitarbeiter.lvz}" style="width:10px"/>
|
||||
PVl. G-Hain:<input type="text" name="gh" value="{$mitarbeiter.gh}" style="width:10px"/>
|
||||
PIN-Post AG:<input type="text" name="pin" value="{$mitarbeiter.pin}" style="width:10px"/>
|
||||
Post-Einhol:<input type="text" name="post" value="{$mitarbeiter.post}" style="width:10px"/>
|
||||
<br />
|
||||
<br />
|
||||
Rundschau :<input type="text" name="rs" value="{$mitarbeiter.rs}" style="width:10px"/>
|
||||
MPV-Werbung:<input type="text" name="mpv" value="{$mitarbeiter.werb}" style="width:10px"/>
|
||||
TIP-Werbung:<input type="text" name="tip" value="{$mitarbeiter.tip}" style="width:10px"/>
|
||||
Sa.-Sonntag:<input type="text" name="saso" value="{$mitarbeiter.saso}" style="width:10px"/>
|
||||
<br />
|
||||
<br />
|
||||
Marktbeleg :<input type="text" name="mb" value="{$mitarbeiter.mb}" style="width:10px"/>
|
||||
Marktplatz :<input type="text" name="mp" value="{$mitarbeiter.mp}" style="width:10px"/>
|
||||
FAZ-Sonntag :<input type="text" name="faz" value="{$mitarbeiter.faz}" style="width:10px"/>
|
||||
Sonstiges :<input type="text" name="sonstige" value="{$mitarbeiter.sonstige}" style="width:10px"/> <br />
|
||||
|
||||
|
||||
<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