mirror of
https://github.com/CoolnsX/my-website.git
synced 2025-12-20 07:15:19 +05:30
8 lines
246 B
HTML
8 lines
246 B
HTML
{%- set usd_rate = 0.012 -%}
|
|
{%- set eur_rate = 0.010 -%}
|
|
|
|
{%- set amount_in_usd = amount * usd_rate -%}
|
|
{%- set amount_in_eur = amount * eur_rate -%}
|
|
|
|
₹{{ amount | num_format }} (${{ amount_in_usd | round }} or €{{ amount_in_eur | round }})
|