Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="playStoreLinks view">
<h2><?php echo __('Play Store Link'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($playStoreLink['PlayStoreLink']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Agent'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($playStoreLink['Agent']['name'], array('controller' => 'agents', 'action' => 'view', $playStoreLink['Agent']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Retailer Id'); ?></dt>
                <dd>
                        <?php echo h($playStoreLink['PlayStoreLink']['retailer_id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Referralcode'); ?></dt>
                <dd>
                        <?php echo h($playStoreLink['PlayStoreLink']['referralcode']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Url'); ?></dt>
                <dd>
                        <?php echo h($playStoreLink['PlayStoreLink']['url']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Call'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($playStoreLink['Call']['id'], array('controller' => 'calls', 'action' => 'view', $playStoreLink['Call']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created'); ?></dt>
                <dd>
                        <?php echo h($playStoreLink['PlayStoreLink']['created']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Modified'); ?></dt>
                <dd>
                        <?php echo h($playStoreLink['PlayStoreLink']['modified']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Play Store Link'), array('action' => 'edit', $playStoreLink['PlayStoreLink']['id'])); ?> </li>
                <li><?php echo $this->Form->postLink(__('Delete Play Store Link'), array('action' => 'delete', $playStoreLink['PlayStoreLink']['id']), null, __('Are you sure you want to delete # %s?', $playStoreLink['PlayStoreLink']['id'])); ?> </li>
                <li><?php echo $this->Html->link(__('List Play Store Links'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Play Store Link'), array('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>
                <li><?php echo $this->Html->link(__('List Calls'), array('controller' => 'calls', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Call'), array('controller' => 'calls', 'action' => 'add')); ?> </li>
        </ul>
</div>