Subversion Repositories SmartDukaan

Rev

Go to most recent revision | 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.getUserLines())
            <tr id="cart-row-$line.get("itemid")">
                <td>
                    $line.get("itemname")
                    <!--<a alt="Show Line Details" title="Show Line Details" href="#" userId="$action.getUserId()" itemId="$line.get("itemid")" class="show-line-details">
                        $line.get("itemname")
                    </a-->                    
                </td>
                <td>$line.get("quantity")</td>
                <td>$line.get("actualprice")</td>
                <td>$line.get("discountedprice")</td>
                <td>$line.get("estimate")</td>
                <td>$line.get("createdon")</td>
            </tr>
            #end
            </tbody>
    </table>
</div>