Subversion Repositories SmartDukaan

Rev

Rev 2715 | Go to most recent revision | Details | Compare with Previous | 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>
4142 mandeep.dh 14
            #foreach($line in $action.getLines())
15
            <tr id="cart-row-$line.getId()">
16
                <td>$action.getProductName($line)</td>
17
                <td>$action.convertDouble($line.getQuantity())</td>
18
                <td>$line.getActualPrice()</td>
19
                <td>$line.getDiscountedPrice()</td>
20
                <td>$line.getEstimate()</td>
21
                <td>$action.convertDate($line.getCreatedOn())</td>
2715 vikas 22
            </tr>
23
            #end
24
            </tbody>
25
    </table>
26
</div>