Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4687 mandeep.dh 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
    <head>
4
        <title>
5
            Warehouses
6
        </title>
7
    </head>
8
    <body>
9
        <div >
10
            <a href="/inventory">Go to Home page</a>
11
            <br />
12
            <label >Warehouses</label>
13
            <br />
14
            <table border="1">
15
                <thead >
16
                    <tr >
17
                        <th >Id</th>
18
                        <th >Name</th>
19
                        <th >Location</th>
20
                        <th ></th>
21
                    </tr>
22
                </thead>
23
                <tbody >
24
                    #foreach($warehouse in $action.getWarehouses())
25
                        <tr >
26
                            <td >$warehouse.getId()</td>
27
                            <td >$warehouse.getDisplayName()</td>
28
                            <td >$warehouse.getLocation()</td>
29
                            <td ><a href="/inventory/current-inventory/$warehouse.getId()">Get inventory</a></td>
30
                        </tr>
31
                    #end
32
                </tbody>
33
            </table>
34
        </div>
35
    </body>
36
</html>