init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
132
template/tpl/isaso.tpl
Normal file
132
template/tpl/isaso.tpl
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
{literal}
|
||||
<script type="text/javascript">
|
||||
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url : 'ajax.php?s=isaso&tpl',
|
||||
cache : false,
|
||||
data : {
|
||||
},
|
||||
dataType : "html",
|
||||
success : function(data){
|
||||
$("#isaso").html(data);
|
||||
},
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
|
||||
<div class="row">
|
||||
<section class="col-md-8">
|
||||
{if $normtest==1}
|
||||
<div class="panel panel-danger">
|
||||
<div class="panel-heading"><h2 class="panel-title">Fehler in der Datenprüfung</h2></div>
|
||||
<table class="table no-margin">
|
||||
<tr><td><span style='color:#FF0000'><strong>Paketnorm nicht gesetzt !!!</strong></td></tr>
|
||||
<tr><td>Pakete können nicht berechnet werden.</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
|
||||
|
||||
<div id="isaso" style="text-align:center;"></div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
<aside class="col-md-4">
|
||||
|
||||
<div id="rightmenu" class="panel panel-default">
|
||||
<div class="panel-heading"><h2 class="panel-title">Datum wechseln</h2></div>
|
||||
<section class="panel-body">
|
||||
<table class="table-condensed">
|
||||
<b><i><span style='font-size:12pt;line-height:115%;
|
||||
color:#4F81BD'>Sachsen-Sonntag für </span></i></b>   
|
||||
<b><i><span style='font-size:12pt;line-height:115%;
|
||||
color:#4F81BD'><a class="button-blue" href="?s=isaso&wahl=1&jahr={$jahr}&kw={$kw}">«</a>
|
||||
  {$kw}.KW / {$jahr}  
|
||||
<a class="button-blue" href="?s=isaso&wahl=2&jahr={$jahr}&kw={$kw}">»</a></span></i></b>
|
||||
</p>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div id="rightmenu" class="panel panel-default">
|
||||
<div class="panel-heading"><h2 class="panel-title">Upload XLS Data</h2></div>
|
||||
<section class="panel-body">
|
||||
<table class="table-condensed">
|
||||
<form action="up_saso.php" method="post" enctype="multipart/form-data">
|
||||
<tr><td nowrap="nowrap"><input type="file" name="datei"></td></tr>
|
||||
<tr><td nowrap="nowrap" align="right"><input type="submit" value="Hochladen"> <br></td> </tr>
|
||||
</form>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div id="rightmenu" class="panel panel-default">
|
||||
<div class="panel-heading"><h2 class="panel-title">Stadt-Touren Paketnorm</h2></div>
|
||||
<section class="panel-body">
|
||||
<table class="table-condensed">
|
||||
<form action="" method="post">
|
||||
<b>Paketnorm: <input type="text" style="width:30px;"name="sasonorm" /> <input type="submit" name="speichern" value="Norm speichern" />
|
||||
</form>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
<div id="rightmenu" class="panel panel-default">
|
||||
<div class="panel-heading"><h2 class="panel-title">Abnahme Tour</h2></div>
|
||||
<section class="panel-body">
|
||||
<form action="" method="post">
|
||||
</br><b>Abnahme hinzu:</b>
|
||||
<select name="plus" style="width:140px;" >
|
||||
{foreach from=$tourplus item=tourplus}
|
||||
{html_options values=$tourplus.id output=$tourplus.tour}
|
||||
{/foreach}
|
||||
<input type="hidden" name="dazu" value="{$tourplus.id}"/>
|
||||
<input type="submit" name="dazuplus" value="hinzufügen" >
|
||||
</select>
|
||||
</form>
|
||||
</section>
|
||||
</div>
|
||||
<div id="rightmenu" class="panel panel-default">
|
||||
<div class="panel-heading"><h2 class="panel-title">SaSo Stellzeiten</h2></div>
|
||||
<section class="panel-body">
|
||||
<table class="no style">
|
||||
<form action="" method="post">
|
||||
{foreach from=$ssz item=ssz}
|
||||
<tr>
|
||||
<td nowrap="nowrap" style="width:90px"><strong>{$ssz.tour}</strong></td>
|
||||
<td nowrap="nowrap" style="width:90px"><strong>{$ssz.zeit} Uhr</strong></td>
|
||||
<td nowrap="nowrap" style="width:90px"><strong>{$ssz.gewicht} kg</strong></td>
|
||||
<input type="hidden" name="list[{$ssz.tid}][tid]" value="{$ssz.id}"/>
|
||||
<input type="hidden" name="programm" value="{$ssz.tdb}"/>
|
||||
{if $ssz.tdb==0}
|
||||
<td><img src="template/images/icon/lock.png" /></td>
|
||||
{elseif $ssz.tdb==2}
|
||||
<td><center> <input type="image" name="managetour" value="{$ssz.tour}" src="template/images/icon/accept.png" /> </center></td>
|
||||
{else}
|
||||
<td><center> <input type="image" name="tourminus" value="{$ssz.tour}" src="template/images/icon/cross.png" /> </center></td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
</form>
|
||||
<div id="ntour" style="text-align:center;"></div>
|
||||
</table>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</aside>
|
||||
<!-- Sidebar End -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue