| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 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/Chiefs/ |
Upload File : |
<div class="chiefs view">
<h2><?php echo __('Chief'); ?></h2>
<dl>
<dt><?php echo __('Id'); ?></dt>
<dd>
<?php echo h($chief['Chief']['id']); ?>
</dd>
<dt><?php echo __('Name'); ?></dt>
<dd>
<?php echo h($chief['Chief']['name']); ?>
</dd>
<dt><?php echo __('Note'); ?></dt>
<dd>
<?php echo h($chief['Chief']['note']); ?>
</dd>
<dt><?php echo __('Is Activated'); ?></dt>
<dd>
<?php echo h($chief['Chief']['is_activated']); ?>
</dd>
<dt><?php echo __('Position'); ?></dt>
<dd>
<?php echo $this->Html->link($chief['Position']['name'], array('controller' => 'positions', 'action' => 'view', $chief['Position']['id'])); ?>
</dd>
<dt><?php echo __('Created'); ?></dt>
<dd>
<?php echo h($chief['Chief']['created']); ?>
</dd>
<dt><?php echo __('Modified'); ?></dt>
<dd>
<?php echo h($chief['Chief']['modified']); ?>
</dd>
</dl>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('Edit Chief'), array('action' => 'edit', $chief['Chief']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Chief'), array('action' => 'delete', $chief['Chief']['id']), null, __('Are you sure you want to delete # %s?', $chief['Chief']['id'])); ?> </li>
<li><?php echo $this->Html->link(__('List Chiefs'), array('action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Chief'), array('action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Positions'), array('controller' => 'positions', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Position'), array('controller' => 'positions', 'action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Activities'), array('controller' => 'activities', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Activity'), array('controller' => 'activities', 'action' => 'add')); ?> </li>
</ul>
</div>
<div class="related">
<h3><?php echo __('Related Activities'); ?></h3>
<?php if (!empty($chief['Activity'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Started'); ?></th>
<th><?php echo __('Ended'); ?></th>
<th><?php echo __('Address'); ?></th>
<th><?php echo __('Description'); ?></th>
<th><?php echo __('Expected'); ?></th>
<th><?php echo __('Is Activated'); ?></th>
<th><?php echo __('District Id'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($chief['Activity'] as $activity): ?>
<tr>
<td><?php echo $activity['id']; ?></td>
<td><?php echo $activity['name']; ?></td>
<td><?php echo $activity['started']; ?></td>
<td><?php echo $activity['ended']; ?></td>
<td><?php echo $activity['address']; ?></td>
<td><?php echo $activity['description']; ?></td>
<td><?php echo $activity['expected']; ?></td>
<td><?php echo $activity['is_activated']; ?></td>
<td><?php echo $activity['district_id']; ?></td>
<td><?php echo $activity['created']; ?></td>
<td><?php echo $activity['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'activities', 'action' => 'view', $activity['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'activities', 'action' => 'edit', $activity['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'activities', 'action' => 'delete', $activity['id']), null, __('Are you sure you want to delete # %s?', $activity['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Activity'), array('controller' => 'activities', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>