Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="productCashbacks form">
<?php echo $this->Form->create('ProductCashback'); ?>
        <fieldset>
                <legend><?php echo __('Edit Product Cashback'); ?></legend>
        <?php
                echo $this->Form->input('id');
                echo $this->Form->input('store_id');
                echo $this->Form->input('product_id');
                echo $this->Form->input('cashback_percantage');
                echo $this->Form->input('cashback_amount');
        ?>
        </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('ProductCashback.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('ProductCashback.id'))); ?></li>
                <li><?php echo $this->Html->link(__('List Product Cashbacks'), array('action' => 'index')); ?></li>
                <li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
        </ul>
</div>