init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
60
template/tpl/kalender_list.tpl
Normal file
60
template/tpl/kalender_list.tpl
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
<form action="" method="post">
|
||||
<b> Mitarbeiterauswahl:
|
||||
<select name="mitarbeiter" style="width:140px;" >
|
||||
{foreach from=$mitarbeiterlist item=allfahrer}
|
||||
{html_options values=$allfahrer.id output=$allfahrer.name selected=$nid}
|
||||
{/foreach}
|
||||
</select>
|
||||
|
||||
<select name="monate" style="width:180px;" >
|
||||
{html_options values=$monate.id output=$monate.name selected=$monate.monat}
|
||||
</select>
|
||||
|
||||
<select name="jahre" style="width:180px;" >
|
||||
{html_options values=$jahre.id output=$jahre.name selected=$jahre.jahr}
|
||||
</select>
|
||||
<input type="submit" name="auswahl" value="OK" >
|
||||
aktuell: {$name}
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
|
||||
<br />
|
||||
<br />
|
||||
<table class="datatable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>W-Tag</th>
|
||||
<th>Datum</th>
|
||||
<th>Status</th>
|
||||
<th>Speichern</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
{foreach from=$kalender item=kalender}
|
||||
<tr>
|
||||
<form action="" method="post">
|
||||
|
||||
<td><b>{$kalender.wt}</td>
|
||||
<td><b>{$kalender.tag}.{$kalender.monat}.{$kalender.jahr}</td>
|
||||
<td>
|
||||
<select name="list[{$kalender.tid}][bezeichnung]" style="width:180px;" >
|
||||
{foreach from=$kalender.bez_array item=bezeichnung}
|
||||
{html_options values=$bezeichnung.id output=$bezeichnung.bez selected=$kalender.sid}
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
<td><center> <input type="image" name="savetour" value="{$kalender.id}" src="template/images/icon/pencil.png" /> </center></td>
|
||||
{if $kalender.wt=="Montag" }
|
||||
<td><hr /> <hr style="color: red; background: blue; height: 15px;" /></td>
|
||||
{/if}
|
||||
</tr>
|
||||
<input type="hidden" name="list[{$kalender.tid}][id]" value="{$kalender.id}"/>
|
||||
<input type="hidden" name="list[{$kalender.tid}][tid]" value="{$kalender.id}"/>
|
||||
{/foreach}
|
||||
<input type="submit" name="testsave" value="kompl. Liste Speichern" >
|
||||
</form>
|
||||
</tbody>
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue