{% extends "product/product.html" %} {% load i18n %} {% load thumbnail %} {% load satchmo_price %} {% load satchmo_currency satchmo_category%} {% load satchmo_util %} {% load app_plugins %} {% block productdetail %}

{% blocktrans with product.translated_name as name %}Subscription product {{ name }}{% endblocktrans %}

{% autoescape off %}{{ product.translated_description }}{% endautoescape %}

{% trans "Only " %}{{product.subscriptionproduct.recurring_times}} {% trans "easy payments of:" %}

{{ product.subscriptionproduct.recurring_price|currency }}

{% for pic in product.productimage_set.all %} {% thumbnail pic.picture 280x280 as image %} {% endfor %} {% for trial in product.subscriptionproduct.get_trial_terms %} {% if forloop.first %}

{% blocktrans %}This product has trial subscription pricing {% endblocktrans %}

{% endif %} {% endfor %} {% with product.translated_attributes as atts %}{% if atts %}

{% for att in product.translated_attributes %} {{ att.description }}: {{ att.value }}
{% endfor %}

{% endif %}{% endwith %} {% if error_message %}

{{ error_message }}

{% endif %}
{% for option_group in options %} {{ option_group.name}}
{% endfor %} {% trans "Quantity" %} {% plugin_point "product_add_buttons" %} {% plugin_point "product_form" %}
{% endblock %}