{% set customer = app.customer_auth %} {% set itemPrice = item.price|number_format(2) %} {% set currencyCode = item.currency_code ?? 'USD' %}
{% if item.price > 0 and item.is_premium %} {% if customer %} {% set hasPurchased = app.checkMediaAccess(item.media_id) %} {% if hasPurchased %}
{{lang.translate('Download')}}
{% endif %}

{{lang.translate('Purchase Media')}}

{{item.name}}

{{lang.translate('By')}} {{item.artist.name ?? item.customer.name}}

{{lang.translate('Price')}} {{currencyCode}}{{itemPrice}}
{% endif %} {% else %}
{{lang.translate('Free')}}
{% endif %}