Subversion Repositories SmartDukaan

Rev

Rev 3293 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1901 vikas 1
<html >
2
<head>
3
	<title>Affiliate Report Generator</title>
4
</head>
5
<body>
6
	<h2 >Affiliate Report Generator</h2>
7
	<p >Select Master Affiliate to generate the report for:</p>
8
	<div>
9
		<form action="" method="post">
3293 vikas 10
            Start Date (MM/dd/yyyy) : <input type="text" class="textbox" value="" name="startDate" id="startDate" /><br/>
11
			End Date (MM/dd/yyyy) : <input type="text" class="textbox" value="" name="endDate" id="endDate" /><br/>
12
            Master Affiliate : <select id="masterAffiliate" name="masterAffiliate">
3315 vikas 13
                                   <!--<option value="-1">All</option>-->
1901 vikas 14
                      #foreach($masterAffiliate in $masterAffiliates)
15
                                   <option value="$masterAffiliate.getId()">$masterAffiliate.getName()</option>
16
                      #end
3293 vikas 17
                               </select><br/>
1901 vikas 18
			<input type="submit" value="Get Report"/>
19
        </form>
20
    </div>
21
	<div id="messageError">
22
         $errorMsg
23
    </div>
24
</body>
25
</html>