Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16475 anikendra 1
<div class="paytmCoupons form">
2
<?php echo $this->Form->create('PaytmCoupon'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Edit Paytm Coupon'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('coupon');
8
		echo $this->Form->input('offer_text');
9
		echo $this->Form->input('min_cart_amount');
10
		echo $this->Form->input('cart_item_limit');
11
		echo $this->Form->input('max_cashback_amount');
12
		echo $this->Form->input('usage_limit');
13
		echo $this->Form->input('cod_available');
14
		echo $this->Form->input('valid_upto');
15
	?>
16
	</fieldset>
17
<?php echo $this->Form->end(__('Submit')); ?>
18
</div>
19
<div class="actions">
20
	<h3><?php echo __('Actions'); ?></h3>
21
	<ul>
22
 
23
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('PaytmCoupon.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('PaytmCoupon.id'))); ?></li>
24
		<li><?php echo $this->Html->link(__('List Paytm Coupons'), array('action' => 'index')); ?></li>
25
	</ul>
26
</div>