Server IP : 180.180.241.3 / Your IP : 216.73.216.127 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 : C:/AppServ/www/app/View/Mous/ |
Upload File : |
<div class="mous view"> <h2><?php echo __('Mou'); ?></h2> <dl> <dt><?php echo __('Id'); ?></dt> <dd> <?php echo h($mou['Mou']['id']); ?> </dd> <dt><?php echo __('Started'); ?></dt> <dd> <?php echo h($mou['Mou']['started']); ?> </dd> <dt><?php echo __('Ended'); ?></dt> <dd> <?php echo h($mou['Mou']['ended']); ?> </dd> <dt><?php echo __('Note'); ?></dt> <dd> <?php echo h($mou['Mou']['note']); ?> </dd> <dt><?php echo __('Is Activated'); ?></dt> <dd> <?php echo h($mou['Mou']['is_activated']); ?> </dd> <dt><?php echo __('Created'); ?></dt> <dd> <?php echo h($mou['Mou']['created']); ?> </dd> <dt><?php echo __('Modified'); ?></dt> <dd> <?php echo h($mou['Mou']['modified']); ?> </dd> </dl> </div> <div class="actions"> <h3><?php echo __('Actions'); ?></h3> <ul> <li><?php echo $this->Html->link(__('Edit Mou'), array('action' => 'edit', $mou['Mou']['id'])); ?> </li> <li><?php echo $this->Form->postLink(__('Delete Mou'), array('action' => 'delete', $mou['Mou']['id']), null, __('Are you sure you want to delete # %s?', $mou['Mou']['id'])); ?> </li> <li><?php echo $this->Html->link(__('List Mous'), array('action' => 'index')); ?> </li> <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> <div class="related"> <h3><?php echo __('Related Organizations'); ?></h3> <?php if (!empty($mou['Organization'])): ?> <table cellpadding = "0" cellspacing = "0"> <tr> <th><?php echo __('Id'); ?></th> <th><?php echo __('Name'); ?></th> <th><?php echo __('Eng Name'); ?></th> <th><?php echo __('Short Name'); ?></th> <th><?php echo __('Eng Short Name'); ?></th> <th><?php echo __('Address1'); ?></th> <th><?php echo __('Address2'); ?></th> <th><?php echo __('Postal Code'); ?></th> <th><?php echo __('Telephone1'); ?></th> <th><?php echo __('Telephone2'); ?></th> <th><?php echo __('Telephone3'); ?></th> <th><?php echo __('Fax'); ?></th> <th><?php echo __('Email'); ?></th> <th><?php echo __('Url'); ?></th> <th><?php echo __('Founded'); ?></th> <th><?php echo __('Work Region'); ?></th> <th><?php echo __('Work Level'); ?></th> <th><?php echo __('Work Area'); ?></th> <th><?php echo __('Objective'); ?></th> <th><?php echo __('Publish'); ?></th> <th><?php echo __('Is Activated'); ?></th> <th><?php echo __('Role Id'); ?></th> <th><?php echo __('District Id'); ?></th> <th><?php echo __('Mou Id'); ?></th> <th><?php echo __('Organization Id'); ?></th> <th><?php echo __('Created'); ?></th> <th><?php echo __('Modified'); ?></th> <th class="actions"><?php echo __('Actions'); ?></th> </tr> <?php foreach ($mou['Organization'] as $organization): ?> <tr> <td><?php echo $organization['id']; ?></td> <td><?php echo $organization['name']; ?></td> <td><?php echo $organization['eng_name']; ?></td> <td><?php echo $organization['short_name']; ?></td> <td><?php echo $organization['eng_short_name']; ?></td> <td><?php echo $organization['address1']; ?></td> <td><?php echo $organization['address2']; ?></td> <td><?php echo $organization['postal_code']; ?></td> <td><?php echo $organization['telephone1']; ?></td> <td><?php echo $organization['telephone2']; ?></td> <td><?php echo $organization['telephone3']; ?></td> <td><?php echo $organization['fax']; ?></td> <td><?php echo $organization['email']; ?></td> <td><?php echo $organization['url']; ?></td> <td><?php echo $organization['founded']; ?></td> <td><?php echo $organization['work_region']; ?></td> <td><?php echo $organization['work_level']; ?></td> <td><?php echo $organization['work_area']; ?></td> <td><?php echo $organization['objective']; ?></td> <td><?php echo $organization['publish']; ?></td> <td><?php echo $organization['is_activated']; ?></td> <td><?php echo $organization['role_id']; ?></td> <td><?php echo $organization['district_id']; ?></td> <td><?php echo $organization['mou_id']; ?></td> <td><?php echo $organization['organization_id']; ?></td> <td><?php echo $organization['created']; ?></td> <td><?php echo $organization['modified']; ?></td> <td class="actions"> <?php echo $this->Html->link(__('View'), array('controller' => 'organizations', 'action' => 'view', $organization['id'])); ?> <?php echo $this->Html->link(__('Edit'), array('controller' => 'organizations', 'action' => 'edit', $organization['id'])); ?> <?php echo $this->Form->postLink(__('Delete'), array('controller' => 'organizations', 'action' => 'delete', $organization['id']), null, __('Are you sure you want to delete # %s?', $organization['id'])); ?> </td> </tr> <?php endforeach; ?> </table> <?php endif; ?> <div class="actions"> <ul> <li><?php echo $this->Html->link(__('New Organization'), array('controller' => 'organizations', 'action' => 'add')); ?> </li> </ul> </div> </div>