forked from brooksbingham/theme-elegance
120 lines
4.6 KiB
Smarty
120 lines
4.6 KiB
Smarty
{**
|
|
* 2007-2019 PrestaShop and Contributors
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/AFL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to https://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2019 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
{extends file='customer/page.tpl'}
|
|
|
|
{block name='page_title'}
|
|
{l s='Order history' d='Shop.Theme.Customeraccount'}
|
|
{/block}
|
|
|
|
{block name='page_content'}
|
|
<h6>{l s='Here are the orders you\'ve placed since your account was created.' d='Shop.Theme.Customeraccount'}</h6>
|
|
|
|
{if $orders}
|
|
<table class="table table-striped table-bordered table-labeled hidden-sm-down">
|
|
<thead class="thead-default">
|
|
<tr>
|
|
<th>{l s='Order reference' d='Shop.Theme.Checkout'}</th>
|
|
<th>{l s='Date' d='Shop.Theme.Checkout'}</th>
|
|
<th>{l s='Total price' d='Shop.Theme.Checkout'}</th>
|
|
<th class="hidden-md-down">{l s='Payment' d='Shop.Theme.Checkout'}</th>
|
|
<th class="hidden-md-down">{l s='Status' d='Shop.Theme.Checkout'}</th>
|
|
<th>{l s='Invoice' d='Shop.Theme.Checkout'}</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$orders item=order}
|
|
<tr>
|
|
<th scope="row">{$order.details.reference}</th>
|
|
<td>{$order.details.order_date}</td>
|
|
<td class="text-xs-right">{$order.totals.total.value}</td>
|
|
<td class="hidden-md-down">{$order.details.payment}</td>
|
|
<td>
|
|
<span
|
|
class="label label-pill {$order.history.current.contrast}"
|
|
style="background-color:{$order.history.current.color}"
|
|
>
|
|
{$order.history.current.ostate_name}
|
|
</span>
|
|
</td>
|
|
<td class="text-sm-center hidden-md-down">
|
|
{if $order.details.invoice_url}
|
|
<a href="{$order.details.invoice_url}"><i class="material-icons"></i></a>
|
|
{else}
|
|
-
|
|
{/if}
|
|
</td>
|
|
<td class="text-sm-center order-actions">
|
|
<a href="{$order.details.details_url}" data-link-action="view-order-details">
|
|
{l s='Details' d='Shop.Theme.Customeraccount'}
|
|
</a>
|
|
{if $order.details.reorder_url}
|
|
<a href="{$order.details.reorder_url}">{l s='Reorder' d='Shop.Theme.Actions'}</a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="orders hidden-md-up">
|
|
{foreach from=$orders item=order}
|
|
<div class="order">
|
|
<div class="row">
|
|
<div class="col-xs-10">
|
|
<a href="{$order.details.details_url}"><h3>{$order.details.reference}</h3></a>
|
|
<div class="date">{$order.details.order_date}</div>
|
|
<div class="total">{$order.totals.total.value}</div>
|
|
<div class="status">
|
|
<span
|
|
class="label label-pill {$order.history.current.contrast}"
|
|
style="background-color:{$order.history.current.color}"
|
|
>
|
|
{$order.history.current.ostate_name}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-2 text-xs-right">
|
|
<div>
|
|
<a href="{$order.details.details_url}" data-link-action="view-order-details" title="{l s='Details' d='Shop.Theme.Customeraccount'}">
|
|
<i class="material-icons"></i>
|
|
</a>
|
|
</div>
|
|
{if $order.details.reorder_url}
|
|
<div>
|
|
<a href="{$order.details.reorder_url}" title="{l s='Reorder' d='Shop.Theme.Actions'}">
|
|
<i class="material-icons"></i>
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|
|
|
|
{/if}
|
|
{/block}
|