Subversion Repositories SmartDukaan

Rev

Rev 13637 | Rev 14225 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13646 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('adminactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php echo $this->Form->create('Skuscheme'); ?>
8
				<fieldset>
9
					<legend><?php echo __('Add sku-wise scheme'); ?></legend>
10
				<?php
11
					echo $this->Form->input('sku',array('type'=>'number'));
12
					echo $this->Form->input('startDate');
13
					echo $this->Form->input('endDate');
14
					echo $this->Form->input('scheme_amount');
15
				?>
16
				</fieldset>
17
			<?php echo $this->Form->end(__('Submit')); ?>
18
		</div>
19
	</div>
13637 anikendra 20
</div>
13646 anikendra 21
<script type="text/javascript" src="<?php echo $base_url;?>/js/jquery.datepick.js"></script>
22
<style type="text/css">@import "<?php echo  $base_url;?>/css/jquery.datepick.css";</style> 
23
<script type="text/javascript">
24
$(function(){
25
	$('#SkuschemeStartDate').datepick();
26
	$('#SkuschemeEndDate').datepick();
27
});
28
</script>