Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23505 ashik.ali 1
<div class="row">
2
	<div class="col-lg-12">
3
		<table class="table table-striped table-advance table-hover">
4
			<tbody>
5
				<tr>
6
					<th>Request Id</th>
7
					<th>Operator</th>
8
					<th>Operator Type</th>
9
					<th>Number</th>
10
					<th>Amount</th>
11
					<th>Status</th>
12
					<th>Status Message</th>
13
					<th>Created On</th>
14
					<th>Updated On</th>
15
				</tr>
16
				#if(!$rechargeTransactions.isEmpty())
17
	    			#foreach( $rechargeTransaction in $rechargeTransactions )
18
	    				<tr class="mobile-recharge-details" data="$rechargeTransaction.getId()">
19
	    					<td>$rechargeTransaction.getRequestId()</td>
20
	    					<td>$rechargeOperatorIdRechargeOperatorNameMap.get($rechargeTransaction.getOperatorId())</td>
21
	    					<td>$rechargeTransaction.getOperatorType()</td>
22
	    					<td>$rechargeTransaction.getReferenceNumber()</td>
23
	    					<td>$rechargeTransaction.getAmount()</td>
24
	    					<td>$rechargeTransaction.getStatus()</td>
25
	    					<td>$rechargeTransaction.getStatusMessage()</td>
26
	    					<td>$rechargeTransaction.getFormattedCreateTimestamp()</td>
27
	    					<td>$rechargeTransaction.getFormattedUpdateTimestamp()</td>
28
	    				</tr>
29
	    			#end
30
    			#else
31
    				<tr>
32
    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
33
    				</tr>
34
    			#end
35
			</tbody>
36
		</table>
37
	</div>
38
</div>