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 __('Admin Add Paytm Coupon'); ?></legend>
5
	<?php
6
		echo $this->Form->input('coupon');
7
		echo $this->Form->input('offer_text');
8
		echo $this->Form->input('min_cart_amount');
9
		echo $this->Form->input('cart_item_limit');
10
		echo $this->Form->input('max_cashback_amount');
11
		echo $this->Form->input('usage_limit');
12
		echo $this->Form->input('cod_available');
13
		echo $this->Form->input('valid_upto');
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->Html->link(__('List Paytm Coupons'), array('action' => 'index')); ?></li>
23
	</ul>
24
</div>