{{ product.name }}
{{ data_objects:format_price(product.price) }}
Features:
{% for feature in product.features %}
- {{ feature }}
{% endfor %}
{% if product.available %}
In Stock
{% else %}
Out of Stock
{% endif %}
{% endfor %}
{% let available_products = data_objects:get_available_products() %}
Total Catalog Value: {{ data_objects:format_price(data_objects:calculate_total_price()) }}
{% let user = data_objects:get_user() %}