Subversion Repositories SmartDukaan

Rev

Rev 6289 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6293 anupam.sin 1
#if($action.getError() && $action.getError()!="")
6289 anupam.sin 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>
6293 anupam.sin 11
				<th>Validity</th>
6289 anupam.sin 12
    			<th>Benefits</th>
13
    		</tr>
14
    	</thead>
15
    	<tbody>
16
			#foreach($rechargeDenomination in $rechargeDenominations)
6293 anupam.sin 17
				#set($validity=$rechargeDenomination.getValidity())
18
				#set($description=$rechargeDenomination.getDescription())
6289 anupam.sin 19
        		<tr>
20
        			<td class='textCenter'><b class="populateAmount">$rechargeDenomination.getAmount()</b></td>
6293 anupam.sin 21
					<td>
22
						#if($validity && $validity != "")
23
							$validity
24
						#else
25
							-
26
						#end
27
					</td>
28
					<td>#if($description && $description != "")
29
							$description
30
						#else
31
							-
32
						#end
33
					</td>
6289 anupam.sin 34
        		</tr>
35
			#end
36
    	</tbody>
37
    </table>
38
#end