Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="paytmCoupons form">
<?php echo $this->Form->create('PaytmCoupon'); ?>
        <fieldset>
                <legend><?php echo __('Admin Edit Paytm Coupon'); ?></legend>
        <?php
                echo $this->Form->input('id');
                echo $this->Form->input('coupon');
                echo $this->Form->input('offer_text');
                echo $this->Form->input('min_cart_amount');
                echo $this->Form->input('cart_item_limit');
                echo $this->Form->input('max_cashback_amount');
                echo $this->Form->input('usage_limit');
                echo $this->Form->input('cod_available');
                echo $this->Form->input('valid_upto');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <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>
                <li><?php echo $this->Html->link(__('List Paytm Coupons'), array('action' => 'index')); ?></li>
        </ul>
</div>