Rev 13579 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<div class="brands view"><h2><?php echo __('Brand'); ?></h2><dl><dt><?php echo __('Id'); ?></dt><dd><?php echo h($brand['Brand']['id']); ?> </dd><dt><?php echo __('Name'); ?></dt><dd><?php echo h($brand['Brand']['name']); ?> </dd><dt><?php echo __('Category'); ?></dt><dd><?php echo $this->Html->link($brand['Category']['name'], array('controller' => 'categories', 'action' => 'view', $brand['Category']['id'])); ?> </dd><dt><?php echo __('Displayed In Preference Page'); ?></dt><dd><?php echo h($brand['Brand']['displayed_in_preference_page']); ?> </dd><dt><?php echo __('Created'); ?></dt><dd><?php echo h($brand['Brand']['created']); ?> </dd></dl></div><div class="actions"><h3><?php echo __('Actions'); ?></h3><ul><li><?php echo $this->Html->link(__('Edit Brand'), array('action' => 'edit', $brand['Brand']['id'])); ?> </li><li><?php echo $this->Form->postLink(__('Delete Brand'), array('action' => 'delete', $brand['Brand']['id']), null, __('Are you sure you want to delete # %s?', $brand['Brand']['id'])); ?> </li><li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New Brand'), array('action' => 'add')); ?> </li><li><?php echo $this->Html->link(__('List Categories'), array('controller' => 'categories', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New Category'), array('controller' => 'categories', 'action' => 'add')); ?> </li></ul></div>