Subversion Repositories SmartDukaan

Rev

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

<div>
    <table id="user-cart" class="display">
        <thead>
            <tr>
                <th>Name</th>
                <th>Quantity</th>
                <th>Actual Price</th>
                <th>Discounted Price</th>
                <th>Estimate</th>
                <th>Created On</th>
            </tr>
        </thead>
        <tbody>
            #foreach($line in $action.getLines())
            <tr id="cart-row-$line.getId()">
                <td class="truncated-text" truncatedTextWidth="260">$action.getProductName($line)</td>
                <td>$action.convertDouble($line.getQuantity())</td>
                <td>$line.getActualPrice()</td>
                <td>$line.getDiscountedPrice()</td>
                <td>$line.getEstimate()</td>
                <td>$action.convertDate($line.getCreatedOn())</td>
            </tr>
            #end
            </tbody>
    </table>
</div>