{** * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. *} {extends 'customer/page.tpl'} {block name='page_title'} {l s='Order history' d='Shop.Theme.Customeraccount'} {/block} {block name='page_content'}

{l s='Here are the orders you\'ve placed since your account was created.' d='Shop.Theme.Customeraccount'}

{if $orders}
{l s='Order reference' d='Shop.Theme.Checkout'} {l s='Date' d='Shop.Theme.Checkout'} {l s='Total price' d='Shop.Theme.Checkout'} {l s='Payment' d='Shop.Theme.Checkout'} {l s='Status' d='Shop.Theme.Checkout'} {l s='Invoice' d='Shop.Theme.Checkout'}
{foreach from=$orders item=order}
{$order.details.reference} {$order.details.order_date} {$order.totals.total.value} {$order.details.payment} {$order.history.current.ostate_name} {* AQUÍ ESTÁ NUESTRO BOTÓN ROJO MODIFICADO *} Descargar {l s='Details' d='Shop.Theme.Customeraccount'} {if $order.details.reorder_url} {l s='Reorder' d='Shop.Theme.Actions'} {/if}
{/foreach}
{else} {/if} {/block}