Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('productactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<h2><?php echo __('Product'); ?></h2>
8
				<dl>
9
					<dt><?php echo __('Id'); ?></dt>
10
					<dd>
11
						<?php echo h($product['Product']['id']); ?>
12
						&nbsp;
13
					</dd>
14
					<dt><?php echo __('Name'); ?></dt>
15
					<dd>
16
						<?php echo h($product['Product']['name']); ?>
17
						&nbsp;
18
					</dd>
19
					<dt><?php echo __('Category'); ?></dt>
20
					<dd>
21
						<?php echo $this->Html->link($product['Category']['name'], array('controller' => 'categories', 'action' => 'view', $product['Category']['id'])); ?>
22
						&nbsp;
23
					</dd>
24
					<dt><?php echo __('Tag Line'); ?></dt>
25
					<dd>
26
						<?php echo h($product['Product']['tag_line']); ?>
27
						&nbsp;
28
					</dd>
29
					<dt><?php echo __('Created'); ?></dt>
30
					<dd>
31
						<?php echo h($product['Product']['created']); ?>
32
						&nbsp;
33
					</dd>
34
					<dt><?php echo __('Modified'); ?></dt>
35
					<dd>
36
						<?php echo h($product['Product']['modified']); ?>
37
						&nbsp;
38
					</dd>
39
					<dt><?php echo __('Image'); ?></dt>
40
					<dd>
41
						<img src="<?php echo h($product['StoreProduct'][0]['img_url']); ?>"/>
42
						&nbsp;
43
					</dd>
44
					<dt><?php echo __('Url'); ?></dt>
45
					<dd>
46
						<?php echo h($product['StoreProduct'][0]['product_url']); ?>
47
						&nbsp;
48
					</dd>
49
					<dt><?php echo __('Price'); ?></dt>
50
					<dd>
51
						<?php echo h($product['StoreProduct'][0]['price']); ?>
52
						&nbsp;
53
					</dd>
54
					<dt><?php echo __('Description'); ?></dt>
55
					<dd>
56
						<?php echo h($product['StoreProduct'][0]['short_description']); ?>
57
						&nbsp;
58
					</dd>
59
				</dl>
60
			</div>
61
		</div>
62
	</div>
63
</div>