Merge with master
This commit is contained in:
57
templates/default/order-placed.html
Normal file
57
templates/default/order-placed.html
Normal file
@@ -0,0 +1,57 @@
|
||||
{extends file="layout.tpl"}
|
||||
|
||||
{* Body Class *}
|
||||
{block name="body-class"}page-order-payment{/block}
|
||||
|
||||
{* Breadcrumb *}
|
||||
{block name='no-return-functions' append}
|
||||
{$breadcrumbs = [
|
||||
['name' => {intl l="Cart"}, 'link'=>{url path="/cart"}],
|
||||
['name' => {intl l="Secure Payment"}, 'link'=>{url path="/order/pay"}]
|
||||
]}
|
||||
{/block}
|
||||
|
||||
|
||||
{block name="main-content"}
|
||||
<div class="main">
|
||||
<article class="col-main clearfix" role="main" aria-labelledby="main-label">
|
||||
|
||||
<h1 id="main-label" class="page-header">{intl l="Your Cart"}</h1>
|
||||
|
||||
<div class="btn-group checkout-progress">
|
||||
<a href="cart.php" role="button" class="btn btn-step disabled"><span class="step-nb">1</span> <span class="step-label">{intl l="Your Cart"}</span></a>
|
||||
<a href="cart-step2.php" role="button" class="btn btn-step disabled"><span class="step-nb">2</span> <span class="step-label">{intl l="Billing and delivery"}</span></a>
|
||||
<a href="cart-step3.php" role="button" class="btn btn-step disabled"><span class="step-nb">3</span> <span class="step-label">{intl l="Check my order"}</span></a>
|
||||
<a href="cart-step4.php" role="button" class="btn btn-step active"><span class="step-nb">4</span> <span class="step-label">{intl l="Secure payment"}</span></a>
|
||||
</div>
|
||||
|
||||
{loop type="order" name="placed-order" id=$placed_order_id}
|
||||
|
||||
<div id="payment-success" class="panel">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{intl l="You chose to pay by"} : <span class="payment-method">{loop name="payment-module" type="module" id=$PAYMENT_MODULE}{$TITLE}{/loop}</span></h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<h3>{intl l="Thank you for the trust you place in us."}</h3>
|
||||
<p>{intl l="A summary of your order email has been sent to the following address"} : {customer attr="email"}</p>
|
||||
<p>{intl l="Your order will be confirmed by us upon receipt of your payment."}</p>
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>{intl l="Order number"} : </dt>
|
||||
<dd>{$REF}</dd>
|
||||
<dt>{intl l="Date"} : </dt>
|
||||
<dd>{format_date date=$CREATE_DATE output="date"}</dd>
|
||||
<dt>{intl l="Total"} : </dt>
|
||||
<dd>{loop type="currency" name="order-currency" id=$CURRENCY}{$SYMBOL}{/loop} {$TOTAL_TAXED_AMOUNT}</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/loop}
|
||||
|
||||
<a href="{navigate to="index"}" role="button" class="btn btn-checkout-home"><span>{intl l="Go home"}</span></a>
|
||||
|
||||
</article>
|
||||
|
||||
</div>
|
||||
{/block}
|
||||
Reference in New Issue
Block a user