Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13637 anikendra 1
<div class="productCashbacks form">
2
<?php echo $this->Form->create('ProductCashback'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit Product Cashback'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('store_id');
8
		echo $this->Form->input('product_id');
9
		echo $this->Form->input('cashback_percantage');
10
		echo $this->Form->input('cashback_amount');
11
	?>
12
	</fieldset>
13
<?php echo $this->Form->end(__('Submit')); ?>
14
</div>
15
<div class="actions">
16
	<h3><?php echo __('Actions'); ?></h3>
17
	<ul>
18
 
19
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('ProductCashback.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('ProductCashback.id'))); ?></li>
20
		<li><?php echo $this->Html->link(__('List Product Cashbacks'), array('action' => 'index')); ?></li>
21
		<li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
22
		<li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
23
	</ul>
24
</div>