Subversion Repositories SmartDukaan

Rev

Rev 13579 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13579 Rev 13758
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
			&nbsp;
12
			&nbsp;
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
			&nbsp;
-
 
18
		</dd>
-
 
19
		<dt><?php echo __('Displayed In Preference Page'); ?></dt>
-
 
20
		<dd>
-
 
21
			<?php echo h($brand['Brand']['displayed_in_preference_page']); ?>
-
 
22
			&nbsp;
-
 
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
			&nbsp;
27
			&nbsp;
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>