Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="row">
    <div class="col-md-12 text-center">
        <table class="table table-border table-condensed table-striped table-bordered" style="width:100%">
            <thead>
            <tr>
                <td>Order Id</td>
                <td>Payment ID</td>
                <td>Payment Status</td>
                <td>Amount</td>
            </tr>
            </thead>
            <tbody>
                #foreach($status in $upSellRazorpayPaymentStatusList)
                <tr>
                    <td>$status.getOrderId()</td>
                    <td>$status.getPaymentId()</td>
                    <td>$status.getPaymentStatus()</td>
                    <td>$status.getPayment()</td>
                </tr>
                #end
            </tbody>
        </table>
    </div>
</div>