Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23629 ashik.ali 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
</style>
27
 
28
<section class="wrapper">
29
	<div class="row">
30
		<div class="col-lg-12">
31
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
32
			<ol class="breadcrumb">
33
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
34
				<li><i class="icon_document_alt"></i>RECHARGE PROVIDER WALLET ADD MONEY</li>				  	
35
			</ol>
36
		</div>
37
	</div>
38
  	<div id="recharge-provider-credit-wallet-histories-table">
39
		<div class="row">
40
	    	<div class="col-lg-12">
41
	    		<table class="table table-striped table-advance table-hover">
42
	    			<tbody>
43
	    				<tr>
44
	    					<th>Provider Name</th>
45
	    					<th>Amount</th>
46
	    					<th>Received On</th>
47
	    					<th>Created On</th>
48
	    				</tr>
49
	    				#if(!$rechargeProviderCreditWalletHistories.isEmpty())
50
			    			#foreach( $rechargeProviderCreditWalletHistory in $rechargeProviderCreditWalletHistories )
51
			    				<tr>
52
			    					<td>$rechargeProviderIdNameMap.get($rechargeProviderCreditWalletHistory.getProviderId())</td>
53
			    					<td>$rechargeProviderCreditWalletHistory.getAmount()</td>
54
			    					<td>$rechargeProviderCreditWalletHistory.getFormattedReceiveTimestamp()</td>
55
			    					<td>$rechargeProviderCreditWalletHistory.getFormattedCreateTimestamp()</td>
56
			    				</tr>
57
			    			#end
58
		    			#else
59
		    				<tr>
60
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
61
		    				</tr>
62
		    			#end
63
	    			</tbody>
64
	    		</table>
65
	    	</div>
66
	    </div>
67
    </div>
68
    #if(!$rechargeProviderCreditWalletHistories.isEmpty())
69
    	<div class="row" id="recharge-provider-credit-wallet-histories-paginated">
70
    		<div class="col-lg-9">
71
    			<p>Showing <span class="start">$start</span> to <span class="end">$end</span> of <span class="size">$size</span> items</p>
72
    		</div>
73
    		<div class="col-lg-3" style="text-align:right;">
74
				<div class="btn-group" style="width:40%">
75
					<button class="btn btn-primary previous" disabled="disabled" style="width:100%">Previous</button>
76
				</div>
77
				<div class="btn-group" style="width:40%">
78
					#if($end >= $size)
79
						<button class="btn btn-primary next" style="width:100%" disabled="disabled">Next</button>
80
					#else
81
						<button class="btn btn-primary next" style="width:100%">Next</button>
82
					#end
83
				</div>
84
	    	</div>
85
	    </div>
86
    #end
87
</section>