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
.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
		text-transform:uppercase;
39
	}
40
 
41
</style>
42
 
43
<section class="wrapper">
44
	<div class="row">
45
		<div class="col-lg-12">
46
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
47
			<ol class="breadcrumb">
48
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
49
				<li><i class="icon_document_alt"></i>PROVIDER BALANCE</li>
50
			</ol>
51
		</div>
52
	</div>
53
 
54
	<div class = "row" style="background:white;background-color:white;padding:10px;">
55
		<h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Balance Information</h4>
56
		<div class="row">
57
			<div class="col-lg-12">
58
	    		<table class="table table-striped table-advance table-hover">
59
	    			<tbody>
60
	    				<tr>
61
	    					<th>Provider Balance From</th>
62
	    					<th>Provider Name</th>
63
	    					<th>Balance</th>
64
	    				</tr>
65
	    				#if(!$dailyRecharges.isEmpty())
66
			    			#foreach( $rechargeProviderBalanceMap in $rechargeProviderBalanceMaps )
67
			    				<tr>
68
			    					<td>$rechargeProviderBalanceMap.get('providerBalanceFrom')</td>
69
			    					<td>$rechargeProviderBalanceMap.get('providerName')</td>
70
			    					<td>$rechargeProviderBalanceMap.get('amount')</td>
71
			    				</tr>
72
			    			#end
73
		    			#else
74
		    				<tr>
75
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
76
		    				</tr>
77
		    			#end
78
	    			</tbody>
79
	    		</table>
80
	    	</div>
81
 
82
		</div>
83
	</div>
84
</section>