Display sales tax amounts on event information page
[civicrm-core.git] / templates / CRM / Event / Page / EventInfo.tpl
index 2e2a77082fdefa03cc16012ce4ff1d2caadefaf6..7b7684b54c271ca5bfb3a8490418340f89661e34 100644 (file)
                       <tr>
                           <td class="{$lClass} crm-event-label">{$feeBlock.label.$idx}</td>
                           {if $isPriceSet & $feeBlock.isDisplayAmount.$idx}
-                          <td class="fee_amount-value right">{$feeBlock.value.$idx|crmMoney}</td>
+                             <td class="fee_amount-value right">
+                              {if isset($feeBlock.tax_amount.$idx)}
+                                         {$feeBlock.value.$idx}
+                              {else}
+                                 {$feeBlock.value.$idx|crmMoney}
+                              {/if}
+                             </td>
                           {/if}
                       </tr>
                       {/if}