| 
<div class="users index"><h2><?php echo __('Users');?></h2>
 <p>
 <?php
 echo $this->Paginator->counter(array(
 'format' => __('Page %page% of %pages%, showing %current% records out of %count% total, starting on record %start%, ending on %end%')
 ));
 ?></p>
 <table cellpadding="0" cellspacing="0">
 <tr>
 <th><?php echo $this->Paginator->sort('id');?></th>
 <th><?php echo $this->Paginator->sort('username');?></th>
 <th><?php echo $this->Paginator->sort('group_id');?></th>
 <th><?php echo $this->Paginator->sort('ban');?></th>
 <th><?php echo $this->Paginator->sort('created');?></th>
 <th><?php echo $this->Paginator->sort('Last login', 'lastlogin');?></th>
 <th class="actions"><?php echo __('Actions');?></th>
 </tr>
 <?php
 $i = 0;
 foreach ($users as $user):
 $class = null;
 if ($i++ % 2 == 0) {
 $class = ' class="altrow"';
 }
 ?>
 <tr<?php echo $class;?>>
 <td>
 <?php echo $user['User']['id']; ?>
 </td>
 <td>
 <?php echo $user['User']['username']; ?>
 </td>
 <td>
 <?php echo $this->Html->link($user['Group']['name'], array('controller'=> 'groups', 'action'=>'view', $user['Group']['id'])); ?>
 </td>
 <td>
 <?php echo $user['User']['ban']; ?>
 </td>
 <td>
 <?php echo $this->Time->format( $format = 'H:i:s d-m-Y', $user['User']['created']); ?>
 </td>
 <td>
 <?php echo $this->Time->format( $format = 'H:i:s d-m-Y', $user['User']['lastlogin']); ?>
 </td>
 <td class="actions">
 <?php echo $this->Html->link(__('View'), array('action'=>'view', $user['User']['id'], 'admin' => FALSE)); ?>
 <?php echo $this->Html->link(__('Edit'), array('action'=>'edit', $user['User']['id'])); ?>
 <?php echo $this->Html->link(__('Delete'), array('action'=>'delete', $user['User']['id']), null, sprintf(__('Are you sure you want to delete # %s?'), $user['User']['id'])); ?>
 </td>
 </tr>
 <?php endforeach; ?>
 </table>
 
 <div class="paging">
 <?php echo $this->Paginator->prev('<< '.__('previous'), array(), null, array('class'=>'disabled'));?>
 |     <?php echo $this->Paginator->numbers();?>
 <?php echo $this->Paginator->next(__('next').' >>', array(), null, array('class'=>'disabled'));?>
 </div>
 </div>
 <div class="actions">
 <ul>
 <li><?php echo $this->Html->link(__('New User'), array('action'=>'add')); ?></li>
 <li><?php echo $this->Html->link(__('List Groups'), array('controller'=> 'groups', 'action'=>'index')); ?> </li>
 <li><?php echo $this->Html->link(__('New Group'), array('controller'=> 'groups', 'action'=>'add')); ?> </li>
 </ul>
 </div>
 
 |