Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
2715 vikas 1
<div>
2
    <table id="user-cart" class="display">
3
        <thead>
4
            <tr>
5
                <th>Name</th>
6
                <th>Quantity</th>
7
                <th>Actual Price</th>
8
                <th>Discounted Price</th>
9
                <th>Estimate</th>
10
                <th>Created On</th>
11
            </tr>
12
        </thead>
13
        <tbody>
14
            #foreach($line in $action.getUserLines())
15
            <tr id="cart-row-$line.get("itemid")">
16
                <td>
17
                    $line.get("itemname")
18
                    <!--<a alt="Show Line Details" title="Show Line Details" href="#" userId="$action.getUserId()" itemId="$line.get("itemid")" class="show-line-details">
19
                        $line.get("itemname")
20
                    </a-->                    
21
                </td>
22
                <td>$line.get("quantity")</td>
23
                <td>$line.get("actualprice")</td>
24
                <td>$line.get("discountedprice")</td>
25
                <td>$line.get("estimate")</td>
26
                <td>$line.get("createdon")</td>
27
            </tr>
28
            #end
29
            </tbody>
30
    </table>
31
</div>