2020-03-09 16:49:36 +01:00
|
|
|
<?php include "../php/index.php" ?>
|
|
|
|
|
|
|
|
<!-- Layout like:
|
2020-03-05 23:06:59 +01:00
|
|
|
<div>
|
2020-03-09 16:49:36 +01:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Docent</th>
|
|
|
|
<th>Locatie</th>
|
|
|
|
<th>Opmerkingen</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Kruiswijk</td>
|
|
|
|
<td>Buiten</td>
|
|
|
|
<td>Neem sportkleding mee!</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Docent</th>
|
|
|
|
<th>Locatie</th>
|
|
|
|
<th>Opmerkingen</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
foreach ($rooster as $record) { ?>
|
|
|
|
<tr>
|
|
|
|
<td><?=$record["naam"]?></td>
|
|
|
|
<td><?=$record["locatie"] === 1 ? 'Binnen' : 'Buiten'?></td>
|
|
|
|
<td><?=$record["opmerking"]?></td>
|
|
|
|
</tr>
|
|
|
|
<?php } ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|