{% extends "base_product.html" %} {% load i18n %} {% load satchmo_thumbnail %} {% load satchmo_price %} {% load satchmo_currency satchmo_category%} {% load satchmo_ratings %} {% load satchmo_util %} {% block content %}

{% 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.unit_price|currency }}

{% for pic in product.productimage_set.all %} {% endfor %} {% for trial in product.subscriptionproduct.get_trial_terms %} {% if forloop.first %}

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

{% endif %} {% endfor %} {% if error_message %}

{{ error_message }}

{% endif %}
{% for option_group in options %} {{ option_group.name}}
{% endfor %} {% trans "Quantity" %} {% if "wishlist"|app_enabled and user.is_authenticated %} {% endif %}
{% if sale %} {% include "discount/product_eligible.html" %} {% endif %} {% product_ratings %} {% endblock %}