Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<div class="clicks form">
2
<?php echo $this->Form->create('Click'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit Click'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('user_id');
8
		echo $this->Form->input('store_product_id');
9
		echo $this->Form->input('tag');
10
		echo $this->Form->input('url');
11
		echo $this->Form->input('price');
12
		echo $this->Form->input('extras');
13
		echo $this->Form->input('type');
14
	?>
15
	</fieldset>
16
<?php echo $this->Form->end(__('Submit')); ?>
17
</div>
18
<div class="actions">
19
	<h3><?php echo __('Actions'); ?></h3>
20
	<ul>
21
 
22
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Click.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Click.id'))); ?></li>
23
		<li><?php echo $this->Html->link(__('List Clicks'), array('action' => 'index')); ?></li>
24
	</ul>
25
</div>