Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23547 ashik.ali 1
#if($rechargeTransaction.getStatus() == "PENDING" || $rechargeTransaction.getStatus() == "CONNECTION_TIMEOUT")
23505 ashik.ali 2
	<h3 style="padding-left:3%;padding-top:2%;font-weight:bold;">Recharge Id : $rechargeTransaction.getId()</h3>
3
	<div class="row" style="padding-left:3%;">
4
		<div class="col-lg-4">
23547 ashik.ali 5
			<div class="row">
6
				<h5 style="padding-left:3%;">Payment Options</h5>
7
				#foreach($rechargePaymentOption in $rechargePaymentOptions)
8
					<div class="col-lg-5 form-group">
9
						<p>$paymentOptionIdPaymentOptinoMap.get($rechargePaymentOption.getPaymentOptionId())</p>
10
					</div>
11
					<div class="col-lg-6 form-group">
12
						<p>$rechargePaymentOption.getAmount()</p>
13
					</div>
14
				#end
15
			</div>
23505 ashik.ali 16
			<p></p>
17
			<div class="btn-group" style="width:40%">
18
				#if($rechargeTransaction.getType() == "MOBILE")
19
					<button class="btn mobile-recharge-check-status" data="$rechargeTransaction.getRequestId()" style="width:100%;background-color:#e98c8f;color:white;">Check Status</button>
20
				#else
21
					<button class="btn dth-recharge-check-status" data="$rechargeTransaction.getRequestId()" style="width:100%;background-color:#e98c8f;color:white;">Check Status</button>
22
				#end
23
			</div>
24
		</div>
25
	</div>
26
	<hr />
27
#end