This commit is contained in:
darthsandmann
2016-10-16 21:53:15 +02:00
parent 0d10f8b9dc
commit c9f3117da1
412 changed files with 137942 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<!-- Template -->
@var rows_o = context;@
<h1>Chargenliste</h1>
<table border = 1>
<tr>
<td>ChargenNr</td><td>Name</td>
</tr>
@for var key_s in rows_o@
@var row_o = rows_o[key_s];@
<tr id='#key_s#'>
<td>#key_s#</td><td>#row_o['chargeName']#</td><td><button onclick = wizardStart(#key_s#)>bearbeiten</button></td><td><button onclick = wizardDelete(#key_s#)>
loeschen</button></td>
</tr>
@endfor@
</table>
<!-- EOF -->

View File

@ -0,0 +1,20 @@
<!-- Template -->
@var rows_o = context;@
<h1>Logfile</h1><p><button onclick = viewAuktionen()>zurueck</button></p>
<table border = 1>
<tr>
<td>Nr</td><td>Kaufer</td><td>Charge</td><td>Los</td><td>Preis</td><td>Zeitpunkt</td>
</tr>
@for var key_s in rows_o@
@var row_o = rows_o[key_s];@
<tr id='#key_s#'>
<td>#key_s#</td><td>#row_o['user']#</td><td>#row_o['charge']#</td><td>#row_o['los']#</td><td>#row_o['preis']#</td><td>#row_o['time']#</td>
</tr>
@endfor@
</table>
<!-- EOF -->

View File

@ -0,0 +1,15 @@
<!-- Template -->
@var data = context;@
<p>Beschreibung</p>
<p><input type = "text" id = "beschreibung" value = #data['beschreibung']#></p>
<p>Anzahl der Gebinde</p>
<p><input type = "text" id = "anzGebinde" value = #data['anzGebinde']#></p>
<p>Dauer der Auktion</p>
<p><input type = "text" id = "auktionDauer" value = #data['auktionDauer']#></p>
<p>Startpreis</p>
<p><input type = "text" id = "startPreis" value = #data['startPreis']#></p>
<p>minimaler Preis</p>
<p><input type = "text" id = "minPreis" value = #data['minPreis']#></p>
<!-- EOF -->