Currency sign next to the price
This commit is contained in:
touffies
2013-11-07 12:56:12 +01:00
parent aa7efb0e9a
commit 45f3dbe172
7 changed files with 19 additions and 19 deletions

View File

@@ -34,7 +34,7 @@
{else}
{assign "real_price" $TAXED_PRICE}
{/if}
<span class="qty">{$QUANTITY}</span> X <span class="price" style="font-size:1em;">{currency attr="symbol"}{$real_price}</span></div>
<span class="qty">{$QUANTITY}</span> X <span class="price" style="font-size:1em;">{$real_price} {currency attr="symbol"}</span></div>
{assign "total_price" $total_price + ($QUANTITY * $real_price)}
</td>
</tr>
@@ -49,7 +49,7 @@
</td>
<td class="total">
<div class="total-price">
<span class="price">{currency attr="symbol"}{$total_price}</span>
<span class="price">{$total_price} {currency attr="symbol"}</span>
</div>
</td>
</tr>