You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
<div class="container"> |
|
<hr> |
|
<div class="row"> |
|
<div class="col-md-12"> |
|
<table class="table table-hover" id="maintable"> |
|
<thead> |
|
<tr> |
|
<th>#</th> |
|
<th>Themanaam</th> |
|
<th>Groep</th> |
|
<?php foreach ($spelgebieden as $spelgebied) { |
|
echo "<th>".$spelgebied['naam']."</th>"; |
|
} ?> |
|
<th>Totaal</th> |
|
</thead> |
|
|
|
<tbody> |
|
<?php foreach ($subgroepen as $subgroep) { ?> |
|
<tr> |
|
<td><?php echo $subgroep['nummer']?></td> |
|
<td><a href="<?php echo base_url('/uitslag/groep/'.$subgroep['id']); ?>"><?php echo $subgroep['themanaam']?></a></td> |
|
<td><?php echo $subgroep['groepsnaam']?></td> |
|
<?php foreach ($spelgebieden as $spelgebied) { |
|
if (isset($uitslag[$subgroep['id']][$spelgebied['id']])) { |
|
$score = $uitslag[$subgroep['id']][$spelgebied['id']]; |
|
} else { |
|
$score = 0; |
|
} |
|
echo "<td class='text-right'>".round($score, 0)."</td>"; |
|
} |
|
echo "<td class='text-right'>".round($uitslag[$subgroep['id']]['total'], 0)."</td>"; |
|
?> |
|
</tr> |
|
<?php } ?> |
|
</tbody> |
|
|
|
</table> |
|
</div> |
|
</div |
|
</div>
|