Use case:
I have a product priced at $71.99 per year in the App Store. On my paywall I am using the variable {{ product.price_per_month }} to display the product's price per month. However, the paywall is rendering $6.00 when I want it to display $5.99.
I do not want to hardcode $5.99 on the paywall because then the price will be shown in USD even if the user non-USD, which is not good.
Desired Solution:
Support for conditional logic directly within the template to show text or values only for specific currencies, such as displaying a hardcoded value but only for USD users.
