Blame | Last modification | View Log | RSS feed
<div class="container"><div class="row"><div class="col-lg-3"><?php echo $this->Element('adminactions');?></div><div class="col-lg-9 table-responsive"><h2><?php echo __('Activation Codes'); ?></h2><table class="table table-striped"><tr><th><?php echo $this->Paginator->sort('id'); ?></th><th><?php echo $this->Paginator->sort('email'); ?></th><th><?php echo $this->Paginator->sort('mobilenumber'); ?></th><th><?php echo $this->Paginator->sort('code'); ?></th><th><?php echo $this->Paginator->sort('status'); ?></th><th><?php echo $this->Paginator->sort('created'); ?></th><th class="actions"><?php echo __('Actions'); ?></th></tr><?php foreach ($activationCodes as $activationCode): ?><tr><td><?php echo h($activationCode['ActivationCode']['id']); ?> </td><td><?php echo h($activationCode['ActivationCode']['email']); ?> </td><td><?php echo h($activationCode['ActivationCode']['mobilenumber']); ?> </td><td><?php echo h($activationCode['ActivationCode']['code']); ?> </td><td><?php echo h($activationCode['ActivationCode']['status']); ?> </td><td><?php echo h($activationCode['ActivationCode']['created']); ?> </td><td class="actions"><?php echo $this->Html->link(__('View'), array('action' => 'view', $activationCode['ActivationCode']['id'])); ?><?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $activationCode['ActivationCode']['id'])); ?><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $activationCode['ActivationCode']['id']), null, __('Are you sure you want to delete # %s?', $activationCode['ActivationCode']['id'])); ?></td></tr><?php endforeach; ?></table><p><?phpecho $this->Paginator->counter(array('format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')));?> </p><div class="paging"><?phpecho $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));echo $this->Paginator->numbers(array('separator' => ''));echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));?></div></div></div></div>