Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
6289 anupam.sin 1
#if($action.getError()!="")
2
	<div style='padding:15px;'>
3
		$action.getError()
4
	</div>
5
#else
6
	#set($rechargeDenominations = $action.getRechargeDenominations())
7
    <table style="width:100%">
8
    	<thead>
9
    		<tr style="font-size: 17px;font-weight: normal;text-align: center;padding: 5px;">
10
    			<th>Amount</th>
11
    			<th>Benefits</th>
12
    		</tr>
13
    	</thead>
14
    	<tbody>
15
			#foreach($rechargeDenomination in $rechargeDenominations)
16
        		<tr>
17
        			<td class='textCenter'><b class="populateAmount">$rechargeDenomination.getAmount()</b></td>
18
        			<td>$rechargeDenomination.getDescription()</td>
19
        		</tr>
20
			#end
21
    	</tbody>
22
    </table>
23
#end