init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
63
template/tpl/a_tour.tpl
Normal file
63
template/tpl/a_tour.tpl
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
|
||||
|
||||
|
||||
<form action="" method="post">
|
||||
|
||||
<select name="ma1" style="width:180px;" >
|
||||
{foreach from=$ma1 item=allfahrer}
|
||||
{html_options values=$allfahrer.id output=$allfahrer.name}
|
||||
{/foreach}
|
||||
</select>
|
||||
|
||||
<select name="ma2" style="width:180px;" >
|
||||
{foreach from=$ma2 item=mam}
|
||||
{html_options values=$ma2.id output=$ma2.name selected=$ma2.monat}
|
||||
{/foreach}
|
||||
</select>
|
||||
|
||||
<select name="ma3" style="width:180px;" >
|
||||
{foreach from=$ma3 item=maj}
|
||||
{html_options values=$ma3.id output=$ma3.name selected=$ma3.jahr}
|
||||
{/foreach}
|
||||
</select>
|
||||
<input type="submit" name="save" value="Anzeigen" />
|
||||
</form>
|
||||
|
||||
|
||||
{foreach from=$a_name item=a_name}
|
||||
{foreach from=$a_monat item=a_monat}
|
||||
{foreach from=$a_jahr item=a_jahr}
|
||||
|
||||
<br/>
|
||||
<b><span style='font-size:18pt;
|
||||
color:#4F81BD'>Übersicht für {$a_name} für Zeitraum: {$a_monat}.{$a_jahr}</span></b></p>{/foreach} {/foreach} {/foreach}
|
||||
|
||||
<table class="datatable full" >
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Datum</td>
|
||||
<td>Tour</td>
|
||||
<td>Fahrer</td>
|
||||
<td>Auto</td>
|
||||
<td>Info</td>
|
||||
<td>Z.Info</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$tour1 item=tour1 }
|
||||
<tr>
|
||||
<td> <b>{$tour1.tag}.{$tour1.monat}.{$tour1.jahr}</td>
|
||||
<td> <b>{$tour1.tour}</td>
|
||||
<td> <b>{$tour1.fahrer}</td>
|
||||
<td> <b>{$tour1.kennz}</td>
|
||||
<td> <b>{$tour1.infotext}</td>
|
||||
{if $tour1.fremd > 0}
|
||||
<td> <b>Stammfahrer</td>
|
||||
{else}
|
||||
<td> <b>Vertretung</td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<br/>
|
||||
Loading…
Add table
Add a link
Reference in a new issue