-
Notifications
You must be signed in to change notification settings - Fork 27
/
order-confirmation.tpl
23 lines (19 loc) · 1.1 KB
/
order-confirmation.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{capture name=path}{l s='Order confirmation'}{/capture}
<h1 class="page-heading">{l s='Order confirmation'}</h1>
{assign var='current_step' value='payment'}
{include file="$tpl_dir./order-steps.tpl"}
{include file="$tpl_dir./errors.tpl"}
{$HOOK_ORDER_CONFIRMATION}
{$HOOK_PAYMENT_RETURN}
{hook h='displayOrderConfirmationTop'}
{if $is_guest}
<p>{l s='Your order ID is:'} <span class="bold">{$reference_order}</span> . {l s='Your order ID has been sent via email.'}</p>
<p class="cart_navigation clearfix">
<a class="btn btn-lg btn-default" href="{$link->getPageLink('guest-tracking', true, NULL, "id_order={$reference_order|urlencode}&email={$email|urlencode}")|escape:'html':'UTF-8'}" title="{l s='Follow my order'}"><i class="icon icon-chevron-left"></i> {l s='Follow my order'}</a>
</p>
{else}
<p class="cart_navigation clearfix">
<a class="btn btn-lg btn-default" href="{$link->getPageLink('history', true)|escape:'html':'UTF-8'}" title="{l s='Go to your order history page'}"><i class="icon icon-chevron-left"></i> {l s='View your order history'}</a>
</p>
{/if}
{hook h='displayOrderConfirmationBelow'}