{% if product.available is not none %}
Available:
{% if product.available %}
Yes
{% else %}
No
{% endif %}
{% endif %}
{% if product.brand %}
{% endif %}
{% if product.seller %}
{% if product.seller == "self" %}
Seller: Self (own shop)
{% elif product.seller is mapping %}
Seller:
{% if product.seller.url %}
{{ product.seller.name }}
{% else %}
{{ product.seller.name }}
{% endif %}
{% if product.seller.type %}
{{ product.seller.type }}{% endif %}
{% endif %}
{% endif %}
{% if product.category %}
Category:
{% set cat = product.category %}
{% set parts = [] %}
{% set _ = parts.append(cat.name) %}
{% set parent = cat.parent %}
{% for _ in range(10) %}
{% if parent %}
{% set _ = parts.insert(0, parent.name) %}
{% set parent = parent.parent %}
{% endif %}
{% endfor %}
{{ parts | join(" › ") }}
{% endif %}
{% if product.id is not none %}
ID: {{ product.id }}
{% endif %}
{% if product.website_variant %}
Website Variant: {{ product.website_variant }}
{% endif %}