Subversion Repositories SmartDukaan

Rev

Rev 32311 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32311 Rev 32771
Line 28... Line 28...
28
<section class="wrapper">
28
<section class="wrapper">
29
	<div class="row">
29
	<div class="row">
30
		<div class="col-lg-12">
30
		<div class="col-lg-12">
31
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
31
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
32
			<ol class="breadcrumb">
32
			<ol class="breadcrumb">
33
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
33
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("mobilerecharge.home")</a></li>
34
				<li><i class="icon_document_alt"></i>MOBILE RECHARGES</li>						  	
34
				<li><i class="icon_document_alt"></i>#springMessage("mobilerecharge.mobilerecharge")</li>
35
			</ol>
35
			</ol>
36
		</div>
36
		</div>
37
	</div>
37
	</div>
38
  	<div id="mobile-recharge-table">
38
  	<div id="mobile-recharge-table">
39
		<div class="row">
39
		<div class="row">
40
	    	<div class="col-lg-12">
40
	    	<div class="col-lg-12">
41
	    		<table class="table table-striped table-advance table-hover">
41
	    		<table class="table table-striped table-advance table-hover">
42
	    			<tbody>
42
	    			<tbody>
43
	    				<tr>
43
	    				<tr>
44
	    					<th>Request Id</th>
44
	    					<th>#springMessage("mobhistory.requestid")</th>
45
	    					<th>Operator</th>
45
	    					<th>#springMessage("mobhistory.operator")</th>
46
	    					<th>Operator Type</th>
46
	    					<th>#springMessage("mobhistory.operatortype")</th>
47
	    					<th>Number</th>
47
	    					<th>#springMessage("mobhistory.number")</th>
48
	    					<th>Amount</th>
48
	    					<th>#springMessage("mobhistory.amount")</th>
49
	    					<th>Commission</th>
49
	    					<th>#springMessage("mobhistory.commission")</th>
50
	    					<th>Status</th>
50
	    					<th>#springMessage("mobhistory.status")</th>
51
	    					<th>Status Message</th>
51
	    					<th>#springMessage("mobhistory.statusmessage")</th>
52
	    					<th>Created On</th>
52
	    					<th>#springMessage("mobhistory.createdon")</th>
53
	    					<th>Updated On</th>
53
	    					<th>#springMessage("mobhistory.updatedon")</th>
54
	    				</tr>
54
	    				</tr>
55
	    				#if(!$rechargeTransactions.isEmpty())
55
	    				#if(!$rechargeTransactions.isEmpty())
56
			    			#foreach( $rechargeTransaction in $rechargeTransactions )
56
			    			#foreach( $rechargeTransaction in $rechargeTransactions )
57
			    				<tr class="mobile-recharge-details" data="$rechargeTransaction.getId()">
57
			    				<tr class="mobile-recharge-details" data="$rechargeTransaction.getId()">
58
			    					<td>$rechargeTransaction.getRequestId()</td>
58
			    					<td>$rechargeTransaction.getRequestId()</td>
Line 86... Line 86...
86
    		<div class="col-lg-9">
86
    		<div class="col-lg-9">
87
    			<p>Showing <span class="start">$start</span> to <span class="end">$end</span> of <span class="size">$size</span> items</p>
87
    			<p>Showing <span class="start">$start</span> to <span class="end">$end</span> of <span class="size">$size</span> items</p>
88
    		</div>
88
    		</div>
89
    		<div class="col-lg-3" style="text-align:right;">
89
    		<div class="col-lg-3" style="text-align:right;">
90
				<div class="btn-group" style="width:40%">
90
				<div class="btn-group" style="width:40%">
91
					<button class="btn btn-primary previous" disabled="disabled" style="width:100%">Previous</button>
91
					<button class="btn btn-primary previous" disabled="disabled" style="width:100%">#springMessage("mobhistory.previous")</button>
92
				</div>
92
				</div>
93
				<div class="btn-group" style="width:40%">
93
				<div class="btn-group" style="width:40%">
94
					#if($end >= $size)
94
					#if($end >= $size)
95
						<button class="btn btn-primary next" style="width:100%" disabled="disabled">Next</button>
95
						<button class="btn btn-primary next" style="width:100%" disabled="disabled">#springMessage("mobhistory.next")</button>
96
					#else
96
					#else
97
						<button class="btn btn-primary next" style="width:100%">Next</button>
97
						<button class="btn btn-primary next" style="width:100%">#springMessage("mobhistory.next")</button>
98
					#end
98
					#end
99
				</div>
99
				</div>
100
	    	</div>
100
	    	</div>
101
	    </div>
101
	    </div>
102
    #end
102
    #end