ACC SHELL
<h1>List configs</h1>
<table>
<tr>
<th>Conf Name</th>
<th>Conf Value</th>
<th>Conf Type</th>
<th>Actions</th>
</tr>
<?php foreach ($configs as $row): ?>
<tr>
<td><?php echo $row['Config']['conf_name'] ?></td>
<td><?php echo $row['Config']['conf_value'] ?></td>
<td><?php echo $row['Config']['conf_type'] ?></td>
<td>
<?php echo $html->link('View','/configs/view/' . $row['Config']['id'])?>
<?php echo $html->link('Edit','/configs/edit/' . $row['Config']['id'])?>
<?php echo $html->link('Delete','/configs/delete/' . $row['Config']['id'])?>
</td>
</tr>
<?php endforeach?>
</table>
<ul>
<li><?php echo $html->link('New Config', '/configs/add'); ?></li>
</ul>
ACC SHELL 2018