Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="searchTerms view">
<h2><?php echo __('Search Term'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($searchTerm['SearchTerm']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('User'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($searchTerm['User']['username'], array('controller' => 'users', 'action' => 'view', $searchTerm['User']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Search Term'); ?></dt>
                <dd>
                        <?php echo h($searchTerm['SearchTerm']['search_term']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created'); ?></dt>
                <dd>
                        <?php echo h($searchTerm['SearchTerm']['created']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Search Term'), array('action' => 'edit', $searchTerm['SearchTerm']['id'])); ?> </li>
                <li><?php echo $this->Form->postLink(__('Delete Search Term'), array('action' => 'delete', $searchTerm['SearchTerm']['id']), null, __('Are you sure you want to delete # %s?', $searchTerm['SearchTerm']['id'])); ?> </li>
                <li><?php echo $this->Html->link(__('List Search Terms'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Search Term'), array('action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
        </ul>
</div>