{% load lfs_tags %} {% if product %} {% for property in product.get_variant_properties %}
{% if property.property_group.name %}[{{ property.property_group.name }}] {% endif %}{{ property.title }}: {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% for property in product.get_displayed_properties %}
{% if property.property_group.name %}[{{ property.property_group.name }}] {% endif %}{{ property.title }}: {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% if product.is_configurable_product and configurable_properties %} {% for property in configurable_properties %}
{% if property.property_group.name %}[{{ property.property_group.name }}] {% endif %}{{ property.title }}: {{ property.value }} {{ property.unit|safe }} {% if property.obj.is_select_field and property.display_price %} ({{ property.price|currency:request}}) {% endif %}
{% endfor %} {% endif %} {% endif %}