Sammlung
This commit is contained in:
@ -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 -->
|
20
Sammlung/Praktikum/3/ias_p2_a0.21/templates/engine/log.tpl
Normal file
20
Sammlung/Praktikum/3/ias_p2_a0.21/templates/engine/log.tpl
Normal 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 -->
|
@ -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>
|
Reference in New Issue
Block a user