Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23637 amit.gupta 1
<style>
2
	.table-striped > tbody > tr:nth-child(odd) > td{
3
  		background: white;
4
  		background-color: white;
5
	}
6
	.table-striped > tbody > tr:nth-child(even) > td{
7
  		background: white;
8
  		background-color:white;
9
	}
10
	.table-striped > tbody > tr:hover > td,
11
	.table-striped > tbody > tr:hover {
12
		background-color: #e98c8f;
13
	  	color:white;
14
	}
15
	.btn:hover{
16
  		color: grey;
17
  		text-decoration: none;
18
	}
19
	.btn-primary:hover{
20
  		color: grey;
21
  		text-decoration: none;
22
	}
23
	.sale-details{
24
		cursor:pointer;
25
	}
26
	.row-fluid {
27
    	overflow: auto;
28
    	white-space: nowrap;
29
	}
30
</style>
31
<section class="wrapper">            
32
	<div class="row">
33
		<div class="col-lg-12">
34
			<h3 class="page-header"><i class="icon_document_alt"></i>DOWNLOAD REPORTS</h3>
35
			<ol class="breadcrumb">
36
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
37
				<li><i class="icon_document_alt"></i>Reports</li>						  	
38
			</ol>
39
		</div>
40
	</div>
41
	<div class="container">
42
		  <h2>Reports</h2>
23646 amit.gupta 43
		  <p>Download Reports</p>            
23637 amit.gupta 44
		  <table class="table table-striped">
45
		    <tbody>
46
	    		<div class="list-group">
47
	            #foreach($reporticoProjectEntry in $reporticoProjectMap.entrySet())
48
		            #foreach($reporticoUrlInfo in $reporticoProjectEntry.getValue())
24509 amit.gupta 49
						  <a onclick="adding data to reports" data-href="${rc.contextPath}/reports/${reporticoProjectEntry.getKey()}${reporticoUrlInfo.getUrl()}" class="list-group-item">
23637 amit.gupta 50
						    <h4 class="list-group-item-heading">$reporticoUrlInfo.getTitle()</h4>
51
						    <p class="list-group-item-text">$reporticoUrlInfo.getDescription()</p>
24509 amit.gupta 52
						    #set($params=$reporticoUrlInfo.getParamsList())
53
						    #parse("./reportico-input-params.vm")
23637 amit.gupta 54
						  </a>
55
	    			#end
56
    			#end
57
				</div>
58
		    </tbody>
59
		  </table>
60
		</div>
24509 amit.gupta 61
</section>
62
 
63
<script type="text/javascript">