File: //proc/self/cwd/nueva/modules/roja45quotationsprofree/views/templates/front/_discount_table.tpl
{*
* 2016 ROJA45
* All rights reserved.
*
* DISCLAIMER
*
* Changing this file will render any support provided by us null and void.
*
* @author Roja45
* @copyright 2016 Roja45
* @license /license.txt
*}
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th><span class="title_box ">{l s='Discount name' mod='roja45quotationsprofree'}</span></th>
<th><span class="title_box ">{l s='Value' mod='roja45quotationsprofree'}</span></th>
</tr>
</thead>
<tbody>
{foreach from=$discounts item=discount}
<tr class="discount_row">
<td>{$discount['charge_name']|escape:"html":"UTF-8"}</td>
<td>
{if ($discount['charge_method'] =='PERCENTAGE')}
{$discount['charge_value']|escape:"html":"UTF-8"|string_format:"%.2f"}%
{elseif ($discount['charge_method'] =='AMOUNT')}
{displayPrice price=$discount['charge_value'] currency=$currency->id}
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>