Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="clicks form">
<?php echo $this->Form->create('Click'); ?>
        <fieldset>
                <legend><?php echo __('Admin Add Click'); ?></legend>
        <?php
                echo $this->Form->input('user_id');
                echo $this->Form->input('store_product_id');
                echo $this->Form->input('tag');
                echo $this->Form->input('url');
                echo $this->Form->input('price');
                echo $this->Form->input('extras');
                echo $this->Form->input('type');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Clicks'), array('action' => 'index')); ?></li>
        </ul>
</div>