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 -->

View File

@ -0,0 +1,14 @@
<canvas id = "canvas" width = "300" height = "300">Canvas</canvas>
<section id = "kaufen" onclick = kaufen('User')><center><h1>Kaufen</h1></center></section>
<section id = "aktuelleAuktion">aktuelle Auktion</section>
<section id = "naechsteAuktion">n<EFBFBD>chste Auktion</section>
<section id = "letzteAuktion">letzte Auktion</section>
<section id = "simManager">
<p><button id = "bot1Button" class = "botButtonInactiveStyle" onclick = botStart(1)>Bot 1</button></p>
<p><button id = "bot2Button" class = "botButtonInactiveStyle" onclick = botStart(2)>Bot 2</button></p>
<p><button class = "bigbutton" onclick = viewChargenubersicht()>Chargen-Manager</button></p>
<p><button class = "bigbutton" onclick = viewLogfile()>Log-Files</button></p>
</section>

View File

@ -0,0 +1,10 @@
<p>Beschreibung: </p>
<p><input type = "text" id = "beschreibung"></p>
<p>Anzahl der Gebinde</p>
<p><input type = "text" id = "anzGebinde"></p>
<p>Dauer der Auktion</p>
<p><input type = "text" id = "auktionDauer"></p>
<p>Startpreis</p>
<p><input type = "text" id = "startPreis"></p>
<p>minimaler Preis</p>
<p><input type = "text" id = "minPreis"></p>