Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="callhistories view">
<h2><?php echo __('Callhistory'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Retailer'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($callhistory['Retailer']['name'], array('controller' => 'retailers', 'action' => 'view', $callhistory['Retailer']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Agent'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($callhistory['Agent']['name'], array('controller' => 'agents', 'action' => 'view', $callhistory['Agent']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Mobile Number'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['mobile_number']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Call Type'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['call_type']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Sms Verified'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['sms_verified']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Call Time'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['call_time']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Duration Sec'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['duration_sec']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Call Disposition'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['call_disposition']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Disposition Description'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['disposition_description']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created'); ?></dt>
                <dd>
                        <?php echo h($callhistory['Callhistory']['created']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Callhistory'), array('action' => 'edit', $callhistory['Callhistory']['id'])); ?> </li>
                <li><?php echo $this->Form->postLink(__('Delete Callhistory'), array('action' => 'delete', $callhistory['Callhistory']['id']), null, __('Are you sure you want to delete # %s?', $callhistory['Callhistory']['id'])); ?> </li>
                <li><?php echo $this->Html->link(__('List Callhistories'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Callhistory'), array('action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
        </ul>
</div>