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,20 @@
<!-- Template -->
@var rows_o = context;@
<h1>Chargenliste</h1><p><button onclick = viewAuktionen()>zurueck</button></p>
<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>
</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,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 onclick = viewChargenubersicht()>Chargen-Manager</button></p>
<p><button onclick = viewLogfile()>Log-Files</button></p>
</section>