| Line 9... |
Line 9... |
| 9 |
<dt><?php echo __('Name'); ?></dt>
|
9 |
<dt><?php echo __('Name'); ?></dt>
|
| 10 |
<dd>
|
10 |
<dd>
|
| 11 |
<?php echo h($brand['Brand']['name']); ?>
|
11 |
<?php echo h($brand['Brand']['name']); ?>
|
| 12 |
|
12 |
|
| 13 |
</dd>
|
13 |
</dd>
|
| - |
|
14 |
<dt><?php echo __('Category'); ?></dt>
|
| - |
|
15 |
<dd>
|
| - |
|
16 |
<?php echo $this->Html->link($brand['Category']['name'], array('controller' => 'categories', 'action' => 'view', $brand['Category']['id'])); ?>
|
| - |
|
17 |
|
| - |
|
18 |
</dd>
|
| - |
|
19 |
<dt><?php echo __('Displayed In Preference Page'); ?></dt>
|
| - |
|
20 |
<dd>
|
| - |
|
21 |
<?php echo h($brand['Brand']['displayed_in_preference_page']); ?>
|
| - |
|
22 |
|
| - |
|
23 |
</dd>
|
| 14 |
<dt><?php echo __('Created'); ?></dt>
|
24 |
<dt><?php echo __('Created'); ?></dt>
|
| 15 |
<dd>
|
25 |
<dd>
|
| 16 |
<?php echo h($brand['Brand']['created']); ?>
|
26 |
<?php echo h($brand['Brand']['created']); ?>
|
| 17 |
|
27 |
|
| 18 |
</dd>
|
28 |
</dd>
|
| Line 23... |
Line 33... |
| 23 |
<ul>
|
33 |
<ul>
|
| 24 |
<li><?php echo $this->Html->link(__('Edit Brand'), array('action' => 'edit', $brand['Brand']['id'])); ?> </li>
|
34 |
<li><?php echo $this->Html->link(__('Edit Brand'), array('action' => 'edit', $brand['Brand']['id'])); ?> </li>
|
| 25 |
<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>
|
35 |
<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>
|
| 26 |
<li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?> </li>
|
36 |
<li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?> </li>
|
| 27 |
<li><?php echo $this->Html->link(__('New Brand'), array('action' => 'add')); ?> </li>
|
37 |
<li><?php echo $this->Html->link(__('New Brand'), array('action' => 'add')); ?> </li>
|
| - |
|
38 |
<li><?php echo $this->Html->link(__('List Categories'), array('controller' => 'categories', 'action' => 'index')); ?> </li>
|
| - |
|
39 |
<li><?php echo $this->Html->link(__('New Category'), array('controller' => 'categories', 'action' => 'add')); ?> </li>
|
| 28 |
</ul>
|
40 |
</ul>
|
| 29 |
</div>
|
41 |
</div>
|