Subversion Repositories SmartDukaan

Rev

Rev 6289 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6289 Rev 6293
Line 1... Line 1...
1
#if($action.getError()!="")
1
#if($action.getError() && $action.getError()!="")
2
	<div style='padding:15px;'>
2
	<div style='padding:15px;'>
3
		$action.getError()
3
		$action.getError()
4
	</div>
4
	</div>
5
#else
5
#else
6
	#set($rechargeDenominations = $action.getRechargeDenominations())
6
	#set($rechargeDenominations = $action.getRechargeDenominations())
7
    <table style="width:100%">
7
    <table style="width:100%">
8
    	<thead>
8
    	<thead>
9
    		<tr style="font-size: 17px;font-weight: normal;text-align: center;padding: 5px;">
9
    		<tr style="font-size: 17px;font-weight: normal;text-align: center;padding: 5px;">
10
    			<th>Amount</th>
10
    			<th>Amount</th>
-
 
11
				<th>Validity</th>
11
    			<th>Benefits</th>
12
    			<th>Benefits</th>
12
    		</tr>
13
    		</tr>
13
    	</thead>
14
    	</thead>
14
    	<tbody>
15
    	<tbody>
15
			#foreach($rechargeDenomination in $rechargeDenominations)
16
			#foreach($rechargeDenomination in $rechargeDenominations)
-
 
17
				#set($validity=$rechargeDenomination.getValidity())
-
 
18
				#set($description=$rechargeDenomination.getDescription())
16
        		<tr>
19
        		<tr>
17
        			<td class='textCenter'><b class="populateAmount">$rechargeDenomination.getAmount()</b></td>
20
        			<td class='textCenter'><b class="populateAmount">$rechargeDenomination.getAmount()</b></td>
-
 
21
					<td>
-
 
22
						#if($validity && $validity != "")
-
 
23
							$validity
-
 
24
						#else
-
 
25
							-
-
 
26
						#end
-
 
27
					</td>
18
        			<td>$rechargeDenomination.getDescription()</td>
28
					<td>#if($description && $description != "")
-
 
29
							$description
-
 
30
						#else
-
 
31
							-
-
 
32
						#end
-
 
33
					</td>
19
        		</tr>
34
        		</tr>
20
			#end
35
			#end
21
    	</tbody>
36
    	</tbody>
22
    </table>
37
    </table>
23
#end
38
#end
24
39