Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10098 kshitij.so 1
<span class="totalValue" style="display:none;">$action.getSearchCount()</span>
2
<table id="snapdeal-listed" style="width: 100%">
3
        <thead>
4
            <tr>
5
                <th>Item Id</th>
6
				<th>Brand</th>
7
				<th>Model Name</th>
8
				<th>Model Number</th>
9
				<th>Color</th>
10
				<th>Flipkart Listed</th>
11
				<th>Risky</th>
12
                <th>Status</th>
13
				<th>Action</th>
14
            </tr>
15
        </thead>
16
        <tbody>
17
	#set($items = $action.getFlipkartItems())
18
    #foreach ( $item in $items )
19
            <tr style="border: 1px">
20
                <td style="text-align:center;">$item.getItem_id()</td>
21
				<td style="text-align:center;">$item.getBrand()</td>
22
				<td style="text-align:center;">$item.getModel_name()</td>
23
				<td style="text-align:center;">$item.getModel_number()</td>
24
				<td style="text-align:center;">$item.getColor()</td>
25
				#if($item.isIsListedOnFlipkart())
26
						<td style="text-align:center;"><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
27
				#else
28
						<td style="text-align:center;"><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
29
				#end
30
				#if($item.isRisky())
31
						<td style="text-align:center;"><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
32
				#else
33
						<td style="text-align:center;"><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
34
				#end
35
				<td style="text-align:center;">$item.getItemStatus()</td>
36
				<td style="text-align:center;"><a href="#" class="editItem" it="$item.getItem_id()">View/Edit</a></td>
37
				</td>
38
            </tr>
39
    #end
40
        </tbody>
41
    </table>
42