Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
11904 kshitij.so 1
<table id="comp-table" style="width: 100%">
2
        <thead>
3
            <tr>
4
                <th>Item Id</th>
5
				<th>Product Name</th>
11936 kshitij.so 6
				<th>Deal Price</th>
11904 kshitij.so 7
				<th>Saholic Price</th>
8
				<th>Snapdeal Price</th>
9
				<th>Flipkart Price</th>
10
                <th>Amazon Price</th>
11
				<th>Seller Website</th>
12
            </tr>
13
        </thead>
14
        <tbody>
15
	#set($items = $action.getPdData())
16
    #foreach ( $item in $items )
17
            <tr style="border: 1px">
11937 kshitij.so 18
                <td style="text-align:center;">$item.getItem_id()</td>
19
				<td style="text-align:center;">$item.getProductName()</td>
20
				<td style="color:red;text-align:center;">$item.getDealPrice()</td>
21
				<td style="text-align:center;">$item.getSaholicPrice()</td>
22
				<td style="text-align:center;">$item.getSdPrice()</td>
23
				<td style="text-align:center;">$item.getFkPrice()</td>
24
				<td style="text-align:center;">$item.getAmazonPrice()</td>
25
				<td style="text-align:center;">#</td>
11904 kshitij.so 26
            </tr>
27
    #end
28
        </tbody>
29
    </table>