14 lines
512 B
Smarty
14 lines
512 B
Smarty
|
<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>
|