Subversion Repositories SmartDukaan

Rev

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

<table id="comp-table" style="width: 100%">
        <thead>
            <tr>
                <th>Item Id</th>
                                <th>Product Name</th>
                                <th>Deal Price</th>
                                <th>Saholic Price</th>
                                <th>Snapdeal Price</th>
                                <th>Flipkart Price</th>
                <th>Amazon Price</th>
                                <th>Seller Website</th>
            </tr>
        </thead>
        <tbody>
        #set($items = $action.getPdData())
    #foreach ( $item in $items )
            <tr style="border: 1px">
                <td style="text-align:center;">$item.getItem_id()</td>
                                <td style="text-align:center;">$item.getProductName()</td>
                                <td style="color:red;text-align:center;">$item.getDealPrice()</td>
                                <td style="text-align:center;">$item.getSaholicPrice()</td>
                                <td style="text-align:center;">$item.getSdPrice()</td>
                                <td style="text-align:center;">$item.getFkPrice()</td>
                                <td style="text-align:center;">$item.getAmazonPrice()</td>
                                <td style="text-align:center;">#</td>
            </tr>
    #end
        </tbody>
    </table>