How to format currency in Zoho Sites Template language?
Hello,
I have a question regarding:
Example:
{% assign currency= {} %}
{% assign currency.code="USD" %}
{% assign currency.symbol="$" %}
{% assign currency.format="##,##,### 0.00" %}
{% assign currency.symbol_on_left=true %}
{% assign currency.code_on_left=true %}
{% assign value=123564.56%}
{{ value | currency(currency, "with_symbol", "with_code", "with_decimal_separator", "with_integer_part", "with_fractional_part") }}
//Output
USD $1,23,564.56
How do I have to setup the currency, to get an output like this?:
10.254,63 €
The documentation does not go deeper on how {% assign currency.format="##,##,### 0.00" %} supposed to work.