Subversion Repositories SmartDukaan

Rev

Rev 3499 | Rev 3996 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3499 Rev 3853
Line 4... Line 4...
4
            <tr>
4
            <tr>
5
                <th>Order Id</th>
5
                <th>Order Id</th>
6
                <th>Created</th>
6
                <th>Created</th>
7
                <th>Status</th>
7
                <th>Status</th>
8
                <th>Amount</th>
8
                <th>Amount</th>
-
 
9
                <th>Mobile No</th>
9
                <th>Shipping Address</th>
10
                <th>Shipping Address</th>
10
            </tr>
11
            </tr>
11
        </thead>
12
        </thead>
12
        <tbody>
13
        <tbody>
13
            #foreach($order in $action.getUserOrders())
14
            #foreach($order in $action.getUserOrders())
14
            <tr id="order-row-$order.get("id")">
15
            <tr id="order-row-$order.get("id")">
15
                <td>
16
                <td>
16
                    <a alt="Show Order Details" title="Show Order Details" href="#" userId="$action.getUserId()" orderId="$order.get("id")" class="show-order-details">
17
                    <a alt="Show Order Details" title="Show Order Details" href="#" userId="$action.getUserId()" orderId="$order.get("id")" class="show-order-details">
17
                        $order.get("id")
18
                        $order.get("id")
18
                    </a>                    
19
                    </a>
19
                </td>
20
                </td>
20
                <td>$order.get("created")</td>
21
                <td>$order.get("created")</td>
21
                <td>$order.get("status")</td>
22
                <td>$order.get("status")</td>
22
                <td>$order.get("amount")</td>
23
                <td>$order.get("amount")</td>
-
 
24
                <td>$order.get("mobileNumber")</td>
23
                <td title="$order.get("shipping")">$order.get("city")</td>
25
                <td title="$order.get("shipping")">$order.get("city")</td>
24
            </tr>
26
            </tr>
25
            #end
27
            #end
26
            </tbody>
28
            </tbody>
27
    </table>
29
    </table>