Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23629 ashik.ali 1
<style>
2
.row{
3
	margin:0 auto;
4
}
5
.modal-content{
6
		background : white;
7
	}
8
	.modelHeaderCustom{
9
		font-size:14px;
10
		font-weight:bold;
11
	}
12
	.border-highlight{
13
		border : 3px solid red;
14
	}
15
	hr{
16
		background-color:#007aff;
17
		border:none;
18
		height:1px;
19
		background:#007aff;
20
	}
21
	.control-label {
22
		margin-top: 0;
23
    	margin-bottom: 0;
24
    	padding-top: 7px;
25
    	font-weight:bold;
26
    	font-size:14px;
27
	}
28
	.form-group{
29
		border-bottom: 1px solid #eff2f7;
30
    	padding-bottom: 15px;
31
    	margin-bottom: 15px;
32
	}
33
	.right{
34
		float:right;
35
	}
36
	.form-control{
37
		color:black;
38
	}
39
 
40
</style>
41
 
42
<section class="wrapper">
43
	<div class="row">
44
		<div class="col-lg-12">
45
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
46
			<ol class="breadcrumb">
47
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
48
				<li><i class="icon_document_alt"></i>PROVIDER BALANCE</li>
49
			</ol>
50
		</div>
51
	</div>
52
 
53
	<div class = "row" style="background:white;background-color:white;padding:10px;">
54
		<h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Balance Information</h4>
55
		<div class="row">
56
			<div class="col-lg-12">
57
	    		<table class="table table-striped table-advance table-hover">
58
	    			<tbody>
59
	    				<tr>
60
	    					<th>Provider Balance From</th>
61
	    					<th>Provider Name</th>
62
	    					<th>Balance</th>
63
	    				</tr>
64
	    				#if(!$dailyRecharges.isEmpty())
65
			    			#foreach( $rechargeProviderBalanceMap in $rechargeProviderBalanceMaps )
66
			    				<tr>
67
			    					<td>$rechargeProviderBalanceMap.get('providerBalanceFrom')</td>
68
			    					<td>$rechargeProviderBalanceMap.get('providerName')</td>
69
			    					<td>$rechargeProviderBalanceMap.get('amount')</td>
70
			    				</tr>
71
			    			#end
72
		    			#else
73
		    				<tr>
74
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
75
		    				</tr>
76
		    			#end
77
	    			</tbody>
78
	    		</table>
79
	    	</div>
80
 
81
		</div>
82
	</div>
83
</section>