bebeboutik/modules/product_vouchers/order_details.tpl

14 lines
512 B
Smarty
Raw Normal View History

2016-01-04 12:49:26 +01:00
<div style="clear:both; padding:0 25px; font-size:12px">
<h3>{l s='Your orders contains Product voucher' mod='product_vouchers'}</h3>
<div style="background:#fff; padding:10px;">
<ul style="margin-left:30px">
{foreach from=$vouchers item=voucher}
<li style="margin-bottom:10px">
{l s='Voucher for product' mod='product_vouchers'} {$voucher.product->name}
<br />
{l s='Code' mod='product_vouchers'} {$voucher.state} : <b>{$voucher.code} </b>
</li>
{/foreach}
</ul>
</div>
</div>