Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="offers view">
<h2><?php echo __('Offer'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Starttime'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['starttime']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Endtime'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['endtime']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Url'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['url']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Title'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['title']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Description'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['description']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Category'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['category']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Img730x150'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['img730x150']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Img482x234'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['img482x234']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Img720x280'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['img720x280']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Img540x210'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['img540x210']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Img360x140'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['img360x140']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Img270x105'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['img270x105']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['created']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Modified'); ?></dt>
                <dd>
                        <?php echo h($offer['Offer']['modified']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Offer'), array('action' => 'edit', $offer['Offer']['id'])); ?> </li>
                <li><?php echo $this->Form->postLink(__('Delete Offer'), array('action' => 'delete', $offer['Offer']['id']), null, __('Are you sure you want to delete # %s?', $offer['Offer']['id'])); ?> </li>
                <li><?php echo $this->Html->link(__('List Offers'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Offer'), array('action' => 'add')); ?> </li>
        </ul>
</div>