Subversion Repositories SmartDukaan

Rev

Rev 20682 | Rev 20782 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20682 Rev 20727
Line 1... Line 1...
1
<html >
1
<html >
-
 
2
<!-- Latest compiled and minified CSS -->
-
 
3
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
-
 
4
 
-
 
5
<!-- Optional theme -->
-
 
6
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
-
 
7
 
-
 
8
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/css/bootstrap-datepicker.min.css">
-
 
9
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
-
 
10
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
-
 
11
<!-- Latest compiled and minified JavaScript -->
-
 
12
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
-
 
13
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/js/bootstrap-datepicker.min.js"></script>
-
 
14
 
-
 
15
<script type="text/javascript">
-
 
16
$(function(){
-
 
17
	$("#datepicker").datepicker( {
-
 
18
		date:new Date(),
-
 
19
	    format: "mon-yy",
-
 
20
	    viewMode: "months", 
-
 
21
	    minViewMode: "months",
-
 
22
	    endDate:"0m"
-
 
23
	});
-
 
24
});
-
 
25
</script>
2
<head>
26
<head>
3
	<title>Statistics</title>
27
	<title>Statistics</title>
4
</head>
28
</head>
5
<body>
29
<body>
-
 
30
	<div class="container">
6
	#parse("../content/reports-common.vm")
31
	#parse("../content/reports-common.vm")
-
 
32
	
-
 
33
	<h2>Download Order Report</h2>
-
 
34
	<div>
-
 
35
		<input type="text" id="datepicker"/>
-
 
36
	</div>
7
	<!--
37
	<!--
8
	<h2 >Statistics</h2>
38
	<h2 >Statistics</h2>
9
	<div>
39
	<div>
10
		<table border="1">
40
		<table border="1">
11
			<tr>
41
			<tr>
Line 91... Line 121...
91
			#end
121
			#end
92
            </tbody>
122
            </tbody>
93
		</table>
123
		</table>
94
 
124
 
95
    </div>
125
    </div>
-
 
126
    </div>
96
</body>
127
</body>
97
</html>
128
</html>
98
129