Currency
The currency
object describes a currency, including its name, symbol, and ISO code.
Usage Example
{%- comment -%} Show currency information {%- endcomment -%}
<p>
Currency: {{ currency.name }} ({{ currency.symbol }})<br>
ISO Code: {{ currency.iso_code }}
</p>
Properties
id
Returns the unique id for this currency.
iso_code
Returns the currency ISO code.
name
Returns the currency name.
symbol
Returns the currency symbol, like € or $.
Last updated on