Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="storeCashbacks form">
<?php echo $this->Form->create('StoreCashback'); ?>
        <fieldset>
                <legend><?php echo __('Add Store Cashback'); ?></legend>
        <?php
                echo $this->Form->input('store_id');
                echo $this->Form->input('category_id');
                echo $this->Form->input('cashback_percantage');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Store 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>
                <li><?php echo $this->Html->link(__('List Categories'), array('controller' => 'categories', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Category'), array('controller' => 'categories', 'action' => 'add')); ?> </li>
        </ul>
</div>