Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12449 kshitij.so 1
#if($action.getPromotionType()=='LONGTERM')
2
<p style="font-size: 14px;">Upload Promotion Detail Sheet:</p>
3
	<form id="uploadPromotionFile" name="fileUpload" action="" enctype="multipart/form-data" method="post">
4
		<label for="filePath" style="font-size: 14px;">Path : </label>
5
		<input type="file" name="file" id="file">
6
		<input type="hidden" name="promotionType" value="LONGTERM" />
7
		<input type="submit" value="Upload" name="upload">
8
    </form>
9
<hr/>
10
#elseif($action.getPromotionType()=='SHORTTERM')
11
<p style="font-size: 14px;">Upload Deals of the day Detail Sheet:</p>
12
	<form id="uploadPromotionFile" name="fileUpload" action="" enctype="multipart/form-data" method="post">
13
		<label for="filePath" style="font-size: 14px;">Path : </label>
14
		<input type="file" name="file" id="file">
15
		<input type="hidden" name="promotionType" value="SHORTTERM" />
16
		<input type="submit" value="Upload" name="upload">
17
    </form>
18
<hr/>
19
#else
20
	<p></p>
21
#end
22