Subversion Repositories SmartDukaan

Rev

Rev 5110 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <link rel="stylesheet" href="/inventory/css/demo_table.css" type="text/css" />
        <link rel="stylesheet" href="/inventory/css/demo_table_jui.css" type="text/css" />
        <link rel="stylesheet" href="/inventory/css/demo_page.css" type="text/css" />        
        <title>
            Ignored Item mappings
        </title>        
        <script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
        <script type="text/javascript" src="/inventory/js/jquery.dataTables.min.js"></script>
        <script type="text/javascript" src="/inventory/js/current-inventory.js"></script>
    </head>
    <body>
        <div >
            <a href="/inventory">Go to Home page</a>
            <br />
            <label >Ignored Item Mappings</label>
            <br />
            <table id="current-inventory" border="1">
                <thead >
                    <tr >
                        <th >Warehouse</th>
                        <th >Mapping</th>
                        <th >Timestamp</th>
                    </tr>
                </thead>
                <tbody >
                    #foreach($key in $action.getIgnoredItemKeys().keySet())
                        <tr >
                            #set($map = $action.getIgnoredItemKeys().get($key))
                            #foreach($warehouse in $map.keySet())
                            <td >$warehouse</td>
                            <td >$key</td>
                            <td >$action.convertDate($map.get($warehouse))</td>
                            #end
                        </tr>
                    #end
                </tbody>
            </table>
        </div>
    </body>
</html>