{% extends 'base.html.twig' %} {% block title %} {{ parent() }} - Purchase {% endblock %} {% set freq_text = { 'monthly': 'every month', 'onetime': 'one time payment', } %} {% block content %} {% if not product.enabled %}
{# Error page for disabled product #}
Product Disabled

This product is currently disabled and cannot be purchased.

If you believe this is an error, please contact support.

{% else %}
{{ product.name }}
{{ product.name }}

{{ product.price | tarin_price(2) }} {{ freq_text[product.frequency] }}

Purchase
{% if product.readme %}
Read me
{{ product.readme }}
{% endif %}
{{ product.description|raw }}
{{ product.name }}
{{ product.name }}

{{ product.price | tarin_price(2) }} {{ freq_text[product.frequency] }}

Purchase
{% endif %} {% endblock %}