Subversion Repositories SmartDukaan

Rev

Rev 7283 | Rev 7420 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7283 Rev 7365
Line 1... Line 1...
1
<!DOCTYPE html PUBLIC 
1
<!DOCTYPE html PUBLIC 
2
    "-//W3C//DTD XHTML 1.1 Transitional//EN"
2
    "-//W3C//DTD XHTML 1.1 Transitional//EN"
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
<head>
5
<head>
-
 
6
#set($mapItem = $action.getAliveItemMap())
6
<link href="/Support/css/demo_page_amazon.css" type="text/css" rel="stylesheet">
7
<link href="/Support/css/demo_page_amazon.css" type="text/css" rel="stylesheet">
7
<link href="/Support/css/demo_table_amazon.css" type="text/css" rel="stylesheet">
8
<link href="/Support/css/demo_table_amazon.css" type="text/css" rel="stylesheet">
8
<script type="text/javascript" src="/Support/js/jquery-1.4.2.js"></script>
9
<script type="text/javascript" src="/Support/js/jquery-1.4.2.js"></script>
9
<script type="text/javascript" src="/Support/js/jquery.dataTables.min.js"></script>
10
<script type="text/javascript" src="/Support/js/jquery.dataTables.min.js"></script>
10
<style type="text/css">   
11
<style type="text/css">   
Line 46... Line 47...
46
        <thead>
47
        <thead>
47
            <tr>
48
            <tr>
48
                <th>Item Id</th>
49
                <th>Item Id</th>
49
				<th>Category</th>
50
				<th>Category</th>
50
				<th>Asin</th>
51
				<th>Asin</th>
51
				<th>Item Name</th>
52
				<th>Saholic Item Description</th>
52
				<th>Brand</th>
-
 
53
				<th>Model Name</th>
53
				<th>Amazon Item Description</th>
54
				<th>Color</th>
-
 
55
				<th>Action</th>
54
				<th>Action</th>
56
            </tr>
55
            </tr>
57
        </thead>
56
        </thead>
58
        <tbody>
57
        <tbody>
59
    #foreach ( $item in $items )
58
    #foreach ( $item in $items )
60
            <tr style="border: 1px">
59
            <tr style="border: 1px">
61
                <td>$item.getItemid()</td>
60
                <td>$item.getItemid()</td>
62
				<td>$item.getCategory()</td>
61
				<td>$item.getCategory()</td>
63
				<td>$item.getAsin()</td>
62
				<td>$item.getAsin()</td>
-
 
63
				<td>$mapItem.get($item.getItemid())</td>  
64
				<td>$item.getName()</td>
64
				<td>$item.getName()</td>
65
				<td>$item.getBrand()</td>
-
 
66
				<td>$item.getModel()</td>
-
 
67
				<td>$item.getColor()</td>
-
 
68
				<td><a href="/Support/amazon-list/$item.getItemid()/edit">View/Edit</a></td>
65
				<td><a href="/Support/amazon-list/$item.getItemid()/edit">View/Edit</a></td>
69
				</td>
66
				</td>
70
            </tr>
67
            </tr>
71
    #end
68
    #end
72
        </tbody>
69
        </tbody>