Subversion Repositories SmartDukaan

Rev

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

#if($action.getError()!="")
        <div style='padding:15px;'>
                $action.getError()
        </div>
#else
        #set($rechargeDenominations = $action.getRechargeDenominations())
    <table style="width:100%">
        <thead>
                <tr style="font-size: 17px;font-weight: normal;text-align: center;padding: 5px;">
                        <th>Amount</th>
                        <th>Benefits</th>
                </tr>
        </thead>
        <tbody>
                        #foreach($rechargeDenomination in $rechargeDenominations)
                        <tr>
                                <td class='textCenter'><b class="populateAmount">$rechargeDenomination.getAmount()</b></td>
                                <td>$rechargeDenomination.getDescription()</td>
                        </tr>
                        #end
        </tbody>
    </table>
#end