{% extends "senex_shop/product.html" %} {% load url from future %} {% load i18n %} {% load currency_filters %} {% load thumbnail %} {% block content %}
{% csrf_token %}
{% block breadcrumbs %} Home {% for ancestor in product.category.get_ancestors %} > {{ ancestor.name }}{% endfor %} {% endblock breadcrumbs %}

{% blocktrans with product.name as name %}Configure your {{ name }}{% endblocktrans %}

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

{% if error_message %}

{{ error_message }}

{% endif %} {% for option_group in options %}
{{ option_group.name }}

{{ option_group.description }}

{% endfor %}

Subtotal:

${{ product.price }}

Summary:

  • Large
  • Polished
  • Something
  • One More
{% endblock %}