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.
38 lines
1.2 KiB
38 lines
1.2 KiB
<div class="container"> |
|
<hr> |
|
<div class="row"> |
|
<div class="col-md-4 col-md-offset-4"> |
|
<p> |
|
Met deze pagina kun je lijsten actief of inactief maken tbv. de beoordeling. |
|
Tevens kunnen de ingevulde scores aangepast worden. |
|
</p> |
|
<table class="table table-hover" id="maintable"> |
|
<thead> |
|
<tr> |
|
<th>Naam</th> |
|
<th>Aanpassen</th> |
|
<th>Actief</th> |
|
</thead> |
|
|
|
<tbody> |
|
<?php foreach ($lijsten as $lijst) {?> |
|
<tr> |
|
<td><?php echo $lijst['naam']; ?></td> |
|
<td class="text-center"> |
|
<?php for ($i=1; $i<=$lijst['ronde']; $i++) { ?> |
|
<a href="<?php echo base_url('edit/lijst/'.$lijst['id'].'/'.$i)?>"><span class="glyphicon glyphicon-pencil"></span></a> |
|
<?php } ?> |
|
</td> |
|
<?php if ($lijst['actief'] == 1) { ?> |
|
<td class="text-center"><a href="<?php echo base_url('edit/disable/'.$lijst['id'])?>"><span class="glyphicon glyphicon-ok text-success"></span></a></td> |
|
<?php } else { ?> |
|
<td class="text-center"><a href="<?php echo base_url('edit/enable/'.$lijst['id'])?>"><span class="glyphicon glyphicon-remove text-danger"></span></a></td> |
|
<?php } ?> |
|
</tr> |
|
<?php } ?> |
|
</tbody> |
|
|
|
</table> |
|
</div> |
|
</div |
|
</div>
|