Subversion Repositories SmartDukaan

Rev

Blame | 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>
        <title>
            Warehouses
        </title>
    </head>
    <body>
        <div >
            <a href="/inventory">Go to Home page</a>
            <br />
            <label >Warehouses</label>
            <br />
            <table border="1">
                <thead >
                    <tr >
                        <th >Id</th>
                        <th >Name</th>
                        <th >Location</th>
                        <th ></th>
                    </tr>
                </thead>
                <tbody >
                    #foreach($warehouse in $action.getWarehouses())
                        <tr >
                            <td >$warehouse.getId()</td>
                            <td >$warehouse.getDisplayName()</td>
                            <td >$warehouse.getLocation()</td>
                            <td ><a href="/inventory/current-inventory/$warehouse.getId()">Get inventory</a></td>
                        </tr>
                    #end
                </tbody>
            </table>
        </div>
    </body>
</html>