| 
<div class="genders index"><h2><?php echo __('Genders');?></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('title');?></th>
 <th><?php echo $this->Paginator->sort('created');?></th>
 <th><?php echo $this->Paginator->sort('modified');?></th>
 <th class="actions"><?php echo __('Actions');?></th>
 </tr>
 <?php
 $i = 0;
 foreach ($genders as $gender):
 $class = null;
 if ($i++ % 2 == 0) {
 $class = ' class="altrow"';
 }
 ?>
 <tr<?php echo $class;?>>
 <td>
 <?php echo $gender['Gender']['id']; ?>
 </td>
 <td>
 <?php echo $gender['Gender']['title']; ?>
 </td>
 <td>
 <?php echo $gender['Gender']['created']; ?>
 </td>
 <td>
 <?php echo $gender['Gender']['modified']; ?>
 </td>
 <td class="actions">
 <?php echo $this->Html->link(__('View'), array('action'=>'view', $gender['Gender']['id'])); ?>
 <?php echo $this->Html->link(__('Edit'), array('action'=>'edit', $gender['Gender']['id'])); ?>
 <?php echo $this->Html->link(__('Delete'), array('action'=>'delete', $gender['Gender']['id']), null, sprintf(__('Are you sure you want to delete # %s?'), $gender['Gender']['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 Gender'), array('action'=>'add')); ?></li>
 <li><?php echo $this->Html->link(__('List Profiles'), array('controller'=> 'profiles', 'action'=>'index')); ?> </li>
 <li><?php echo $this->Html->link(__('New Profile'), array('controller'=> 'profiles', 'action'=>'add')); ?> </li>
 </ul>
 </div>
 
 |