Subversion Repositories SmartDukaan

Rev

Rev 13579 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13579 anikendra 1
<div class="brands view">
2
<h2><?php echo __('Brand'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($brand['Brand']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Name'); ?></dt>
10
		<dd>
11
			<?php echo h($brand['Brand']['name']); ?>
12
			&nbsp;
13
		</dd>
13758 anikendra 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>
13579 anikendra 24
		<dt><?php echo __('Created'); ?></dt>
25
		<dd>
26
			<?php echo h($brand['Brand']['created']); ?>
27
			&nbsp;
28
		</dd>
29
	</dl>
30
</div>
31
<div class="actions">
32
	<h3><?php echo __('Actions'); ?></h3>
33
	<ul>
34
		<li><?php echo $this->Html->link(__('Edit Brand'), array('action' => 'edit', $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>
36
		<li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?> </li>
37
		<li><?php echo $this->Html->link(__('New Brand'), array('action' => 'add')); ?> </li>
13758 anikendra 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>
13579 anikendra 40
	</ul>
41
</div>