Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/View/Mous/ |
Upload File : |
<div class="mous index"> <h2><?php echo __('Mous'); ?></h2> <table cellpadding="0" cellspacing="0"> <tr> <th><?php echo $this->Paginator->sort('id'); ?></th> <th><?php echo $this->Paginator->sort('started'); ?></th> <th><?php echo $this->Paginator->sort('ended'); ?></th> <th><?php echo $this->Paginator->sort('note'); ?></th> <th><?php echo $this->Paginator->sort('is_activated'); ?></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 foreach ($mous as $mou): ?> <tr> <td><?php echo h($mou['Mou']['id']); ?> </td> <td><?php echo h($mou['Mou']['started']); ?> </td> <td><?php echo h($mou['Mou']['ended']); ?> </td> <td><?php echo h($mou['Mou']['note']); ?> </td> <td><?php echo h($mou['Mou']['is_activated']); ?> </td> <td><?php echo h($mou['Mou']['created']); ?> </td> <td><?php echo h($mou['Mou']['modified']); ?> </td> <td class="actions"> <?php echo $this->Html->link(__('View'), array('action' => 'view', $mou['Mou']['id'])); ?> <?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $mou['Mou']['id'])); ?> <?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $mou['Mou']['id']), null, __('Are you sure you want to delete # %s?', $mou['Mou']['id'])); ?> </td> </tr> <?php endforeach; ?> </table> <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> <div class="paging"> <?php echo $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 class="actions"> <h3><?php echo __('Actions'); ?></h3> <ul> <li><?php echo $this->Html->link(__('New Mou'), array('action' => 'add')); ?></li> <li><?php echo $this->Html->link(__('List Organizations'), array('controller' => 'organizations', 'action' => 'index')); ?> </li> <li><?php echo $this->Html->link(__('New Organization'), array('controller' => 'organizations', 'action' => 'add')); ?> </li> </ul> </div>