Subversion Repositories SmartDukaan

Rev

Rev 26318 | 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">
32771 raveendra. 36
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("reports.home")</a></li>
37
				<li><i class="icon_document_alt"></i>#springMessage("reports.reports")</li>
23637 amit.gupta 38
			</ol>
39
		</div>
40
	</div>
41
	<div class="container">
32771 raveendra. 42
		  <h2>#springMessage("reports.reports")</h2>
43
		  <p>#springMessage("reports.downloadreports")</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())
26161 amit.gupta 49
						  <a href="${rc.contextPath}/reports/${reporticoProjectEntry.getKey()}${reporticoUrlInfo.getUrl()}" class="list-group-item"
50
							  #if($reporticoUrlInfo.getParamsList())
51
							  data-paramslist="$vmUtils.htmlJson($reporticoUrlInfo.getParamsList())"
52
							  #end
53
						  >
23637 amit.gupta 54
						    <h4 class="list-group-item-heading">$reporticoUrlInfo.getTitle()</h4>
55
						    <p class="list-group-item-text">$reporticoUrlInfo.getDescription()</p>
56
						  </a>
26161 amit.gupta 57
 
23637 amit.gupta 58
	    			#end
59
    			#end
60
				</div>
26158 amit.gupta 61
		  	</tbody>
62
		 </table>
63
	</div>
26318 tejbeer 64
	<div id="report-modal" class="modal" role="dialog" data-backdrop="static" data-keyboard="false">
26158 amit.gupta 65
		<div class="modal-dialog">
66
 
67
		    <!-- Modal content-->
68
		    <div class="modal-content">
69
		      <div class="modal-header">
70
		        <button type="button" class="close" data-dismiss="modal">&times;</button>
71
		        <h4 class="modal-title"></h4>
72
		      </div>
73
		      <div class="modal-body">
74
			  </div>
75
			  <div class="modal-footer">
76
		        <button type="button" data-dismiss="modal" class="btn btn-default download-report">Download</button>
77
		      </div>
78
	    	</div>
23637 amit.gupta 79
		</div>
26158 amit.gupta 80
	</div>
24541 amit.gupta 81
</section>