Subversion Repositories SmartDukaan

Rev

Rev 17632 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-3">
                        <?php echo $this->Element('adminactions');?>
                </div>
                <div class="col-lg-9">
                        <?php echo $this->Form->create('Dealobjects'); ?>
                                <fieldset>
                                        <legend><?php echo __('Add Feature Deal Object'); ?></legend>
                                <?php
                                        echo $this->Form->input('id',array('type'=>'number'));
                                        
                                        echo $this->Form->input('startDate',array('type'=>'datetime','timeFormat'=>24));
                                        echo $this->Form->input('endDate',array('type'=>'datetime','timeFormat'=>24));
                                        
                                        echo $this->Form->input('Mobiles',array('type'=>'number','value'=>0));
                                        echo $this->Form->input('Tablets',array('type'=>'number','value'=>0));
                                        echo $this->Form->input('Accessories',array('type'=>'number','value'=>0));
                                        echo $this->Form->input('OfferId',array('type'=>'number','value'=>0));
                                        
                                ?>
                                
                                </fieldset>
                        <?php echo $this->Form->end(__('Submit')); ?>
                        </div>
                </div>
        </div>
</div>