
        <table class="my_orders_table">
            <tbody>
                <tr>
                    <th>{{i18n "misPedidosTemplate.Fecha"}}</th>
                    <th>{{i18n "misPedidosTemplate.nPedido"}}</th>
                    <th>{{i18n "misPedidosTemplate.importe"}}</th>
                    <th>{{i18n "misPedidosTemplate.estado"}}</th>
                    <th></th>
                    <th></th>
                </tr>

                {{#each orders}}

                    <tr>
                        <td>{{formated_shipping_date}}</td>
                        <td>{{order_id}}</td>
                        <td>{{amount}}{{i18n "commons.euro_symbol"}}</td>
                        <td class="pending">{{state}}</td>
                        <td><a class="my_orders_link" title="{{i18n "misPedidosTemplate.detalleTitle"}}" href="javascript:loadOrderDetail('{{{{order_id}}}}')">{{i18n "misPedidosTemplate.detalle"}}</a></td>
                        <td><a class="my_orders_link" title="{{i18n "misPedidosTemplate.productosTitle"}}" href="javascript:loadProductOrder('{{{{order_id}}}}')">{{i18n "misPedidosTemplate.productos"}}</a></td>
                    </tr>

                {{/each}}

            </tbody>

        </table>











































                        </div>