ACC SHELL
<h1>List users</h1>
<table>
<tr>
<th>Id</th>
<th>Logname</th>
<th>Pass</th>
<th>Firm</th>
<th>Real Name</th>
<th>Email</th>
<th>Address</th>
<th>Phone</th>
<th>Fax</th>
<th>Interest</th>
<th>Created D</th>
<th>Actions</th>
</tr>
<?php foreach ($users as $row): ?>
<tr>
<td><?php echo $row['User']['id'] ?></td>
<td><?php echo $row['User']['logname'] ?></td>
<td><?php echo $row['User']['pass'] ?></td>
<td><?php echo $row['User']['firm'] ?></td>
<td><?php echo $row['User']['real_name'] ?></td>
<td><?php echo $row['User']['email'] ?></td>
<td><?php echo $row['User']['address'] ?></td>
<td><?php echo $row['User']['phone'] ?></td>
<td><?php echo $row['User']['fax'] ?></td>
<td><?php echo $row['User']['interest'] ?></td>
<td><?php echo $row['User']['created_d'] ?></td>
<td>
<?php echo $html->link('View','/users/view/' . $row['User']['id'])?>
<?php echo $html->link('Edit','/users/edit/' . $row['User']['id'])?>
<?php echo $html->link('Delete','/users/delete/' . $row['User']['id'])?>
</td>
</tr>
<?php endforeach?>
</table>
<ul>
<li><?php echo $html->link('New User', '/users/add'); ?></li>
</ul>
ACC SHELL 2018