Typy objektů

v přípravě - není dostupné v šablonách

AccountingDocument

Attributy objektu AccountingDocument

Název

Typ

Popis

code

string

Kód

date

datetime

Datum vystavení

totalPrice

Price

Celková cena

pdfUrl

Url

URL stažení PDF

Příklady:

{{ accountingdocument.code }}
{{ accountingdocument.date|date('d. m. Y H:i') }}
{{ accountingdocument.totalPrice.vatRate }}
{{ accountingdocument.totalPrice.current.currency }}
{{ accountingdocument.totalPrice.current.formatted }}
{{ accountingdocument.totalPrice.current.value }}
{% if accountingdocument.totalPrice.discountPercent %}
        {{ accountingdocument.totalPrice.discountPercent }}
{% endif %}
{% if accountingdocument.totalPrice.discountValidTo %}
        {{ accountingdocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if accountingdocument.totalPrice.beforeDiscount %}
        {{ accountingdocument.totalPrice.beforeDiscount.currency }}
        {{ accountingdocument.totalPrice.beforeDiscount.formatted }}
        {{ accountingdocument.totalPrice.beforeDiscount.value }}
{% endif %}
{% if accountingdocument.totalPrice.discount %}
        {{ accountingdocument.totalPrice.discount.currency }}
        {{ accountingdocument.totalPrice.discount.formatted }}
        {{ accountingdocument.totalPrice.discount.value }}
{% endif %}
{{ accountingdocument.pdfUrl }}
{{ accountingdocument.pdfUrl.absolute }}
{{ accountingdocument.pdfUrl.path }}

Actuality

Attributy objektu Actuality

Název

Typ

Popis

id

int

Id

name

string

Název

date

datetime

Datum

url

Url

URL aktuality nebo externí URL (má přednost)

annotation

string | null

Anotace

text

string | null

Text

image

Image | null

Hlavní obrázek

Příklady:

{{ actuality.id }}
{{ actuality.name }}
{{ actuality.date|date('d. m. Y H:i') }}
{{ actuality.url }}
{{ actuality.url.absolute }}
{{ actuality.url.path }}

{% if actuality.annotation %}
        {{ actuality.annotation }}
{% endif %}

{% if actuality.text %}
        {{ actuality.text }}
{% endif %}

{% if actuality.image %}
        {{ actuality.image.originalHeight }}
        {{ actuality.image.originalWidth }}
        {{ actuality.image.url }}
        {% if actuality.image.alt %}
                {{ actuality.image.alt }}
        {% endif %}
        {% if actuality.image.text %}
                {{ actuality.image.text }}
        {% endif %}
{% endif %}

Address

Attributy objektu Address

Název

Typ

Popis

name

Address/Name

Jméno

city

string | null

Město

company

string | null

Firma

companyId

string | null

email

string | null

Email

phone

string | null

Telefon

region

string | null

Region (stát, okres, …)

street

string | null

Ulice a čp.

vatId

string | null

DIČ

zip

string | null

PSČ

country

Address/Country | null

Země

Příklady:

{{ address.name }}
{% if address.name.first %}
        {{ address.name.first }}
{% endif %}
{% if address.name.last %}
        {{ address.name.last }}
{% endif %}

{% if address.city %}
        {{ address.city }}
{% endif %}

{% if address.company %}
        {{ address.company }}
{% endif %}

{% if address.companyId %}
        {{ address.companyId }}
{% endif %}

{% if address.email %}
        {{ address.email }}
{% endif %}

{% if address.phone %}
        {{ address.phone }}
{% endif %}

{% if address.region %}
        {{ address.region }}
{% endif %}

{% if address.street %}
        {{ address.street }}
{% endif %}

{% if address.vatId %}
        {{ address.vatId }}
{% endif %}

{% if address.zip %}
        {{ address.zip }}
{% endif %}

{% if address.country %}
        {{ address.country.code }}
        {{ address.country.flagCircleUrl }}
        {{ address.country.flagUrl }}
        {{ address.country.name }}
        {% if address.country.eU %} ... {% endif %}
{% endif %}

Address/Country

Attributy objektu Address/Country

Název

Typ

Popis

code

string

Kód (například cz)

flagCircleUrl

string

URL SVG vlajky (kruhová)

flagUrl

string

URL SVG vlajky (obdélníková 3:4)

name

string

Název

eU

bool

Je v EU?

Příklady:

{{ country.code }}
{{ country.flagCircleUrl }}
{{ country.flagUrl }}
{{ country.name }}
{% if country.eU %} ... {% endif %}

Address/Name

Attributy objektu Address/Name

Název

Typ

Popis

first

string | null

Křestní

last

string | null

Příjmení

Příklady:

{{ name }}

{% if name.first %}
        {{ name.first }}
{% endif %}

{% if name.last %}
        {{ name.last }}
{% endif %}

Addresses

Attributy objektu Addresses

Název

Typ

Popis

delivery

Address

Dodací adrea

invoice

Address

Fakturační adresa

Příklady:

{{ addresses.delivery.name }}
{% if addresses.delivery.name.first %}
        {{ addresses.delivery.name.first }}
{% endif %}
{% if addresses.delivery.name.last %}
        {{ addresses.delivery.name.last }}
{% endif %}
{% if addresses.delivery.city %}
        {{ addresses.delivery.city }}
{% endif %}
{% if addresses.delivery.company %}
        {{ addresses.delivery.company }}
{% endif %}
{% if addresses.delivery.companyId %}
        {{ addresses.delivery.companyId }}
{% endif %}
{% if addresses.delivery.email %}
        {{ addresses.delivery.email }}
{% endif %}
{% if addresses.delivery.phone %}
        {{ addresses.delivery.phone }}
{% endif %}
{% if addresses.delivery.region %}
        {{ addresses.delivery.region }}
{% endif %}
{% if addresses.delivery.street %}
        {{ addresses.delivery.street }}
{% endif %}
{% if addresses.delivery.vatId %}
        {{ addresses.delivery.vatId }}
{% endif %}
{% if addresses.delivery.zip %}
        {{ addresses.delivery.zip }}
{% endif %}
{% if addresses.delivery.country %}
        {{ addresses.delivery.country.code }}
        {{ addresses.delivery.country.flagCircleUrl }}
        {{ addresses.delivery.country.flagUrl }}
        {{ addresses.delivery.country.name }}
        {% if addresses.delivery.country.eU %} ... {% endif %}
{% endif %}
{{ addresses.invoice.name }}
{% if addresses.invoice.name.first %}
        {{ addresses.invoice.name.first }}
{% endif %}
{% if addresses.invoice.name.last %}
        {{ addresses.invoice.name.last }}
{% endif %}
{% if addresses.invoice.city %}
        {{ addresses.invoice.city }}
{% endif %}
{% if addresses.invoice.company %}
        {{ addresses.invoice.company }}
{% endif %}
{% if addresses.invoice.companyId %}
        {{ addresses.invoice.companyId }}
{% endif %}
{% if addresses.invoice.email %}
        {{ addresses.invoice.email }}
{% endif %}
{% if addresses.invoice.phone %}
        {{ addresses.invoice.phone }}
{% endif %}
{% if addresses.invoice.region %}
        {{ addresses.invoice.region }}
{% endif %}
{% if addresses.invoice.street %}
        {{ addresses.invoice.street }}
{% endif %}
{% if addresses.invoice.vatId %}
        {{ addresses.invoice.vatId }}
{% endif %}
{% if addresses.invoice.zip %}
        {{ addresses.invoice.zip }}
{% endif %}
{% if addresses.invoice.country %}
        {{ addresses.invoice.country.code }}
        {{ addresses.invoice.country.flagCircleUrl }}
        {{ addresses.invoice.country.flagUrl }}
        {{ addresses.invoice.country.name }}
        {% if addresses.invoice.country.eU %} ... {% endif %}
{% endif %}

Admin

Administrátor eshopu

Attributy objektu Admin

Název

Typ

Popis

id

int

Id

email

string

Email

phone

string

Telefon

position

string

Pozice

name

Address/Name

Jméno a příjmení

image

Image

Obrázek

text

html | null

Text

Příklady:

{{ admin.id }}
{{ admin.email }}
{{ admin.phone }}
{{ admin.position }}
{{ admin.name }}
{% if admin.name.first %}
        {{ admin.name.first }}
{% endif %}
{% if admin.name.last %}
        {{ admin.name.last }}
{% endif %}
{{ admin.image.originalHeight }}
{{ admin.image.originalWidth }}
{{ admin.image.url }}
{% if admin.image.alt %}
        {{ admin.image.alt }}
{% endif %}
{% if admin.image.text %}
        {{ admin.image.text }}
{% endif %}

{% if admin.text %}
        {{ admin.text }}
{% endif %}

AnalyticsReport

Attributy objektu AnalyticsReport

Název

Typ

Popis

name

string

Název

url

Url

URL

Příklady:

{{ analyticsreport.name }}
{{ analyticsreport.url }}
{{ analyticsreport.url.absolute }}
{{ analyticsreport.url.path }}

Article

Attributy objektu Article

Název

Typ

Popis

id

int

Id

name

string

Nazev

datePublished

datetime

Datum publikování

attributes

Attribute/AttributeInstance[]

Parametry a hodnoty

author

Author

Autor

files

File[]

Soubory (manuály, specifikace, …)

images

Image[]

Obrázky

topic

Topic

Téma (zařazení)

topics

Topic[]

Témata

url

Url

URL článku

videos

Video[]

Videa

text

html | null

Text

attribute

Attribute/AttributeInstance | null

Atribut s hodnotami

image

Image | null

Hlavní obrázek

seo

Seo | null

SEO attributy

contentGrid

array | null

Content grid

Příklady:

{{ article.id }}
{{ article.name }}
{{ article.datePublished|date('d. m. Y H:i') }}

{% for attributeInstance in article.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ article.author.id }}
{{ article.author.name }}
{% if article.author.name.first %}
        {{ article.author.name.first }}
{% endif %}
{% if article.author.name.last %}
        {{ article.author.name.last }}
{% endif %}
{{ article.author.image.originalHeight }}
{{ article.author.image.originalWidth }}
{{ article.author.image.url }}
{% if article.author.image.alt %}
        {{ article.author.image.alt }}
{% endif %}
{% if article.author.image.text %}
        {{ article.author.image.text }}
{% endif %}
{% for socialProfile in article.author.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{{ article.author.url }}
{{ article.author.url.absolute }}
{{ article.author.url.path }}
{% if article.author.email %}
        {{ article.author.email }}
{% endif %}
{% if article.author.nickname %}
        {{ article.author.nickname }}
{% endif %}
{% if article.author.phone %}
        {{ article.author.phone }}
{% endif %}
{% if article.author.text %}
        {{ article.author.text }}
{% endif %}

{% for file in article.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}

{% for image in article.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ article.topic.id }}
{{ article.topic.name }}
{{ article.topic.image.originalHeight }}
{{ article.topic.image.originalWidth }}
{{ article.topic.image.url }}
{% if article.topic.image.alt %}
        {{ article.topic.image.alt }}
{% endif %}
{% if article.topic.image.text %}
        {{ article.topic.image.text }}
{% endif %}
{% for topic in article.topic.subtopics %}
        {{ topic.id }}
        {{ topic.name }}
        {{ topic.image.originalHeight }}
        {{ topic.image.originalWidth }}
        {{ topic.image.url }}
        {% if topic.image.alt %}
                {{ topic.image.alt }}
        {% endif %}
        {% if topic.image.text %}
                {{ topic.image.text }}
        {% endif %}
        {{ topic.url }}
        {{ topic.url.absolute }}
        {{ topic.url.path }}
        {{ topic.pathNames }}
        {% if topic.text %}
                {{ topic.text }}
        {% endif %}
        {% if topic.seo %}
                {% if topic.seo.description %}
                        {{ topic.seo.description }}
                {% endif %}
                {% if topic.seo.keywords %}
                        {{ topic.seo.keywords }}
                {% endif %}
                {% if topic.seo.title %}
                        {{ topic.seo.title }}
                {% endif %}
        {% endif %}
        {% if topic.parent %}
                {{ topic.parent.id }}
                {{ topic.parent.name }}
                {{ topic.parent.pathNames }}
                {% if topic.parent.text %}
                        {{ topic.parent.text }}
                {% endif %}
                {% if topic.parent.seo %}
                {% endif %}
        {% endif %}
{% endfor %}
{{ article.topic.url }}
{{ article.topic.url.absolute }}
{{ article.topic.url.path }}
{{ article.topic.pathNames }}
{% if article.topic.text %}
        {{ article.topic.text }}
{% endif %}
{% if article.topic.seo %}
        {% if article.topic.seo.description %}
                {{ article.topic.seo.description }}
        {% endif %}
        {% if article.topic.seo.keywords %}
                {{ article.topic.seo.keywords }}
        {% endif %}
        {% if article.topic.seo.title %}
                {{ article.topic.seo.title }}
        {% endif %}
{% endif %}
{% if article.topic.parent %}
        {{ article.topic.parent.id }}
        {{ article.topic.parent.name }}
        {{ article.topic.parent.image.originalHeight }}
        {{ article.topic.parent.image.originalWidth }}
        {{ article.topic.parent.image.url }}
        {% if article.topic.parent.image.alt %}
                {{ article.topic.parent.image.alt }}
        {% endif %}
        {% if article.topic.parent.image.text %}
                {{ article.topic.parent.image.text }}
        {% endif %}
        {% for topic in article.topic.parent.subtopics %}
                {{ topic.id }}
                {{ topic.name }}
                {{ topic.pathNames }}
                {% if topic.text %}
                        {{ topic.text }}
                {% endif %}
                {% if topic.seo %}
                {% endif %}
        {% endfor %}
        {{ article.topic.parent.url }}
        {{ article.topic.parent.url.absolute }}
        {{ article.topic.parent.url.path }}
        {{ article.topic.parent.pathNames }}
        {% if article.topic.parent.text %}
                {{ article.topic.parent.text }}
        {% endif %}
        {% if article.topic.parent.seo %}
                {% if article.topic.parent.seo.description %}
                        {{ article.topic.parent.seo.description }}
                {% endif %}
                {% if article.topic.parent.seo.keywords %}
                        {{ article.topic.parent.seo.keywords }}
                {% endif %}
                {% if article.topic.parent.seo.title %}
                        {{ article.topic.parent.seo.title }}
                {% endif %}
        {% endif %}
{% endif %}

{% for topic in article.topics %}
        {{ topic.id }}
        {{ topic.name }}
        {{ topic.image.originalHeight }}
        {{ topic.image.originalWidth }}
        {{ topic.image.url }}
        {% if topic.image.alt %}
                {{ topic.image.alt }}
        {% endif %}
        {% if topic.image.text %}
                {{ topic.image.text }}
        {% endif %}
        {% for topic in topic.subtopics %}
                {{ topic.id }}
                {{ topic.name }}
                {{ topic.image.originalHeight }}
                {{ topic.image.originalWidth }}
                {{ topic.image.url }}
                {% if topic.image.alt %}
                        {{ topic.image.alt }}
                {% endif %}
                {% if topic.image.text %}
                        {{ topic.image.text }}
                {% endif %}
                {{ topic.url }}
                {{ topic.url.absolute }}
                {{ topic.url.path }}
                {{ topic.pathNames }}
                {% if topic.text %}
                        {{ topic.text }}
                {% endif %}
                {% if topic.seo %}
                        {% if topic.seo.description %}
                                {{ topic.seo.description }}
                        {% endif %}
                        {% if topic.seo.keywords %}
                                {{ topic.seo.keywords }}
                        {% endif %}
                        {% if topic.seo.title %}
                                {{ topic.seo.title }}
                        {% endif %}
                {% endif %}
                {% if topic.parent %}
                        {{ topic.parent.id }}
                        {{ topic.parent.name }}
                        {{ topic.parent.pathNames }}
                        {% if topic.parent.text %}
                                {{ topic.parent.text }}
                        {% endif %}
                        {% if topic.parent.seo %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ topic.url }}
        {{ topic.url.absolute }}
        {{ topic.url.path }}
        {{ topic.pathNames }}
        {% if topic.text %}
                {{ topic.text }}
        {% endif %}
        {% if topic.seo %}
                {% if topic.seo.description %}
                        {{ topic.seo.description }}
                {% endif %}
                {% if topic.seo.keywords %}
                        {{ topic.seo.keywords }}
                {% endif %}
                {% if topic.seo.title %}
                        {{ topic.seo.title }}
                {% endif %}
        {% endif %}
        {% if topic.parent %}
                {{ topic.parent.id }}
                {{ topic.parent.name }}
                {{ topic.parent.image.originalHeight }}
                {{ topic.parent.image.originalWidth }}
                {{ topic.parent.image.url }}
                {% if topic.parent.image.alt %}
                        {{ topic.parent.image.alt }}
                {% endif %}
                {% if topic.parent.image.text %}
                        {{ topic.parent.image.text }}
                {% endif %}
                {% for topic in topic.parent.subtopics %}
                        {{ topic.id }}
                        {{ topic.name }}
                        {{ topic.pathNames }}
                        {% if topic.text %}
                                {{ topic.text }}
                        {% endif %}
                        {% if topic.seo %}
                        {% endif %}
                {% endfor %}
                {{ topic.parent.url }}
                {{ topic.parent.url.absolute }}
                {{ topic.parent.url.path }}
                {{ topic.parent.pathNames }}
                {% if topic.parent.text %}
                        {{ topic.parent.text }}
                {% endif %}
                {% if topic.parent.seo %}
                        {% if topic.parent.seo.description %}
                                {{ topic.parent.seo.description }}
                        {% endif %}
                        {% if topic.parent.seo.keywords %}
                                {{ topic.parent.seo.keywords }}
                        {% endif %}
                        {% if topic.parent.seo.title %}
                                {{ topic.parent.seo.title }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}
{{ article.url }}
{{ article.url.absolute }}
{{ article.url.path }}

{% for video in article.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if article.text %}
        {{ article.text }}
{% endif %}

{% if article.attribute %}
        {{ article.attribute.name }}
        {{ article.attribute.valuesHtml }}
        {% for attributeValueInstance in article.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if article.attribute.description %}
                {{ article.attribute.description }}
        {% endif %}
        {% if article.attribute.group %}
                {{ article.attribute.group.id }}
        {% endif %}
        {% if article.attribute.image %}
                {{ article.attribute.image.originalHeight }}
                {{ article.attribute.image.originalWidth }}
                {{ article.attribute.image.url }}
                {% if article.attribute.image.alt %}
                        {{ article.attribute.image.alt }}
                {% endif %}
                {% if article.attribute.image.text %}
                        {{ article.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if article.image %}
        {{ article.image.originalHeight }}
        {{ article.image.originalWidth }}
        {{ article.image.url }}
        {% if article.image.alt %}
                {{ article.image.alt }}
        {% endif %}
        {% if article.image.text %}
                {{ article.image.text }}
        {% endif %}
{% endif %}

{% if article.seo %}
        {% if article.seo.description %}
                {{ article.seo.description }}
        {% endif %}
        {% if article.seo.keywords %}
                {{ article.seo.keywords }}
        {% endif %}
        {% if article.seo.title %}
                {{ article.seo.title }}
        {% endif %}
{% endif %}

{% if article.contentGrid %}
        {{ article.contentGrid }}
{% endif %}

Attribute/Attribute

Attributy objektu Attribute/Attribute

Název

Typ

Popis

id

int

ID

name

string

Název

values

Attribute/AttributeValue[]

Hodnoty

text

string | null

Popis

meaning

AttributeMeaning | null

Význam

image

Image | null

Obrázek

Příklady:

{{ attribute.id }}
{{ attribute.name }}

{% for attributeValue in attribute.values %}
        {{ attributeValue.id }}
        {{ attributeValue.name }}
        {{ attributeValue.attribute.id }}
        {{ attributeValue.attribute.name }}
        {% if attributeValue.attribute.text %}
                {{ attributeValue.attribute.text }}
        {% endif %}
        {% if attributeValue.attribute.meaning %}
                {{ attributeValue.attribute.meaning.code }}
        {% endif %}
        {% if attributeValue.attribute.image %}
                {{ attributeValue.attribute.image.originalHeight }}
                {{ attributeValue.attribute.image.originalWidth }}
                {{ attributeValue.attribute.image.url }}
                {% if attributeValue.attribute.image.alt %}
                        {{ attributeValue.attribute.image.alt }}
                {% endif %}
                {% if attributeValue.attribute.image.text %}
                        {{ attributeValue.attribute.image.text }}
                {% endif %}
        {% endif %}
        {% if attributeValue.colorCode %}
                {{ attributeValue.colorCode }}
        {% endif %}
        {% if attributeValue.text %}
                {{ attributeValue.text }}
        {% endif %}
        {% if attributeValue.image %}
                {{ attributeValue.image.originalHeight }}
                {{ attributeValue.image.originalWidth }}
                {{ attributeValue.image.url }}
                {% if attributeValue.image.alt %}
                        {{ attributeValue.image.alt }}
                {% endif %}
                {% if attributeValue.image.text %}
                        {{ attributeValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if attribute.text %}
        {{ attribute.text }}
{% endif %}

{% if attribute.meaning %}
        {{ attribute.meaning.code }}
{% endif %}

{% if attribute.image %}
        {{ attribute.image.originalHeight }}
        {{ attribute.image.originalWidth }}
        {{ attribute.image.url }}
        {% if attribute.image.alt %}
                {{ attribute.image.alt }}
        {% endif %}
        {% if attribute.image.text %}
                {{ attribute.image.text }}
        {% endif %}
{% endif %}

Attribute/AttributeGroup

Attributy objektu Attribute/AttributeGroup

Název

Typ

Popis

id

int

ID

Příklady:

{{ attributegroup.id }}

Attribute/AttributeInstance

Attributy objektu Attribute/AttributeInstance

Název

Typ

Popis

name

string

Název

valuesHtml

html

Názvy hodnot včetně případného odkazu a title, oddělené čárkou

values

Attribute/AttributeValueInstance[]

Hodnoty

description

string | null

Popis

group

Attribute/AttributeGroup | null

Skupina parametrů

image

Image | null

Obrázek

Příklady:

{{ attributeinstance.name }}
{{ attributeinstance.valuesHtml }}

{% for attributeValueInstance in attributeinstance.values %}
        {{ attributeValueInstance.values }}
        {{ attributeValueInstance.nameHtml }}
        {% if attributeValueInstance.colorCode %}
                {{ attributeValueInstance.colorCode }}
        {% endif %}
        {% if attributeValueInstance.text %}
                {{ attributeValueInstance.text }}
        {% endif %}
        {% if attributeValueInstance.unit %}
                {{ attributeValueInstance.unit }}
        {% endif %}
        {% if attributeValueInstance.image %}
                {{ attributeValueInstance.image.originalHeight }}
                {{ attributeValueInstance.image.originalWidth }}
                {{ attributeValueInstance.image.url }}
                {% if attributeValueInstance.image.alt %}
                        {{ attributeValueInstance.image.alt }}
                {% endif %}
                {% if attributeValueInstance.image.text %}
                        {{ attributeValueInstance.image.text }}
                {% endif %}
        {% endif %}
        {% if attributeValueInstance.name %}
                {{ attributeValueInstance.name }}
        {% endif %}
{% endfor %}

{% if attributeinstance.description %}
        {{ attributeinstance.description }}
{% endif %}

{% if attributeinstance.group %}
        {{ attributeinstance.group.id }}
{% endif %}

{% if attributeinstance.image %}
        {{ attributeinstance.image.originalHeight }}
        {{ attributeinstance.image.originalWidth }}
        {{ attributeinstance.image.url }}
        {% if attributeinstance.image.alt %}
                {{ attributeinstance.image.alt }}
        {% endif %}
        {% if attributeinstance.image.text %}
                {{ attributeinstance.image.text }}
        {% endif %}
{% endif %}

Attribute/AttributeValue

Hodnota parametru

Attributy objektu Attribute/AttributeValue

Název

Typ

Popis

id

int

Id

name

string

Název

attribute

Attribute/Attribute

Parametr

colorCode

string | null

Hex kód barvy

text

html | null

Text

image

Image | null

Obrázek

Příklady:

{{ attributevalue.id }}
{{ attributevalue.name }}
{{ attributevalue.attribute.id }}
{{ attributevalue.attribute.name }}
{% for attributeValue in attributevalue.attribute.values %}
        {{ attributeValue.id }}
        {{ attributeValue.name }}
        {% if attributeValue.colorCode %}
                {{ attributeValue.colorCode }}
        {% endif %}
        {% if attributeValue.text %}
                {{ attributeValue.text }}
        {% endif %}
        {% if attributeValue.image %}
                {{ attributeValue.image.originalHeight }}
                {{ attributeValue.image.originalWidth }}
                {{ attributeValue.image.url }}
                {% if attributeValue.image.alt %}
                        {{ attributeValue.image.alt }}
                {% endif %}
                {% if attributeValue.image.text %}
                        {{ attributeValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% if attributevalue.attribute.text %}
        {{ attributevalue.attribute.text }}
{% endif %}
{% if attributevalue.attribute.meaning %}
        {{ attributevalue.attribute.meaning.code }}
{% endif %}
{% if attributevalue.attribute.image %}
        {{ attributevalue.attribute.image.originalHeight }}
        {{ attributevalue.attribute.image.originalWidth }}
        {{ attributevalue.attribute.image.url }}
        {% if attributevalue.attribute.image.alt %}
                {{ attributevalue.attribute.image.alt }}
        {% endif %}
        {% if attributevalue.attribute.image.text %}
                {{ attributevalue.attribute.image.text }}
        {% endif %}
{% endif %}

{% if attributevalue.colorCode %}
        {{ attributevalue.colorCode }}
{% endif %}

{% if attributevalue.text %}
        {{ attributevalue.text }}
{% endif %}

{% if attributevalue.image %}
        {{ attributevalue.image.originalHeight }}
        {{ attributevalue.image.originalWidth }}
        {{ attributevalue.image.url }}
        {% if attributevalue.image.alt %}
                {{ attributevalue.image.alt }}
        {% endif %}
        {% if attributevalue.image.text %}
                {{ attributevalue.image.text }}
        {% endif %}
{% endif %}

Attribute/AttributeValueInstance

Attributy objektu Attribute/AttributeValueInstance

Název

Typ

Popis

nameHtml

html

Název včetně title a případného odkazu a title

colorCode

string | null

Hex kód barvy

text

string | null

Popis

unit

string | null

Jednotka

image

Image | null

Obrázek

name

string | int | float | null

Název

Příklady:

{{ attributevalueinstance }}
{{ attributevalueinstance.nameHtml }}

{% if attributevalueinstance.colorCode %}
        {{ attributevalueinstance.colorCode }}
{% endif %}

{% if attributevalueinstance.text %}
        {{ attributevalueinstance.text }}
{% endif %}

{% if attributevalueinstance.unit %}
        {{ attributevalueinstance.unit }}
{% endif %}

{% if attributevalueinstance.image %}
        {{ attributevalueinstance.image.originalHeight }}
        {{ attributevalueinstance.image.originalWidth }}
        {{ attributevalueinstance.image.url }}
        {% if attributevalueinstance.image.alt %}
                {{ attributevalueinstance.image.alt }}
        {% endif %}
        {% if attributevalueinstance.image.text %}
                {{ attributevalueinstance.image.text }}
        {% endif %}
{% endif %}

{% if attributevalueinstance.name %}
        {{ attributevalueinstance.name }}
{% endif %}

AttributeMeaning

Attributy objektu AttributeMeaning

Název

Typ

Popis

code

string

Kód

Příklady:

{{ attributemeaning.code }}

Author

Autor článku

Attributy objektu Author

Název

Typ

Popis

id

int

Id

name

Address/Name

Jméno a příjmení

image

Image

Obrázek

socialProfiles

SocialProfile[]

Socialní sítě

url

Url

URL

email

string | null

Email

nickname

string | null

Přezívka

phone

string | null

Telefon

text

html | null

Text

Příklady:

{{ author.id }}
{{ author.name }}
{% if author.name.first %}
        {{ author.name.first }}
{% endif %}
{% if author.name.last %}
        {{ author.name.last }}
{% endif %}
{{ author.image.originalHeight }}
{{ author.image.originalWidth }}
{{ author.image.url }}
{% if author.image.alt %}
        {{ author.image.alt }}
{% endif %}
{% if author.image.text %}
        {{ author.image.text }}
{% endif %}

{% for socialProfile in author.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{{ author.url }}
{{ author.url.absolute }}
{{ author.url.path }}

{% if author.email %}
        {{ author.email }}
{% endif %}

{% if author.nickname %}
        {{ author.nickname }}
{% endif %}

{% if author.phone %}
        {{ author.phone }}
{% endif %}

{% if author.text %}
        {{ author.text }}
{% endif %}

Availability

Attributy objektu Availability

Název

Typ

Popis

availableAmount

int

Dostupné kusy

availableAmountInShowroom

int

Dostupné vystavené kusy

availableAmountInStockroom

int

Dostupné kusy na konkrétním skladu

availableAmountInStorageCenter

int

Dostupné kusy v konkrétním středisku

hours

int

Dostupnost v hodinách

totalAmount

int

Celkové kusy (bez odečtení rezervace)

inShowroom

bool

Je vystaveno?

inStock

bool

Je skladem?

preorder

bool

Jde o předobjednávku?

watchdogSupported

bool

Je podporován hlídací pes?

deliveryOptions

DeliveryOption[]

Dostupná dodání s termínem

text

string | null

Popis dostupnosti

dateExpected

datetime | null

Datum očekávaného naskladnění

deliveryOption

DeliveryOption | null

Nejrychlejší dodání

Příklady:

{{ availability.availableAmount }}
{{ availability.availableAmountInShowroom }}
{{ availability.availableAmountInStockroom }}
{{ availability.availableAmountInStorageCenter }}
{{ availability.hours }}
{{ availability.totalAmount }}
{% if availability.inShowroom %} ... {% endif %}
{% if availability.inStock %} ... {% endif %}
{% if availability.preorder %} ... {% endif %}
{% if availability.watchdogSupported %} ... {% endif %}

{% for deliveryOption in availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ deliveryOption.transport.inputId }}
        {{ deliveryOption.transport.name }}
        {{ deliveryOption.transport.vatRate }}
        {% if deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if deliveryOption.transport.currier %} ... {% endif %}
        {% if deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if deliveryOption.transport.deliveryAddressRequired %} ... {% endif %}
        {% if deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if deliveryOption.transport.free %} ... {% endif %}
        {% if deliveryOption.transport.pickup %} ... {% endif %}
        {% if deliveryOption.transport.selected %} ... {% endif %}
        {{ deliveryOption.transport.price.vatRate }}
        {% if deliveryOption.transport.price.discountPercent %}
                {{ deliveryOption.transport.price.discountPercent }}
        {% endif %}
        {% if deliveryOption.transport.price.discountValidTo %}
                {{ deliveryOption.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if deliveryOption.transport.price.beforeDiscount %}
        {% endif %}
        {% if deliveryOption.transport.price.discount %}
        {% endif %}
        {% if deliveryOption.transport.text %}
                {{ deliveryOption.transport.text }}
        {% endif %}
        {% if deliveryOption.transport.branch %}
                {{ deliveryOption.transport.branch.code }}
                {{ deliveryOption.transport.branch.name }}
        {% endif %}
        {% if deliveryOption.transport.carrier %}
                {{ deliveryOption.transport.carrier.code }}
                {{ deliveryOption.transport.carrier.name }}
        {% endif %}
        {% if deliveryOption.transport.deliveryDate %}
                {{ deliveryOption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ deliveryOption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ deliveryOption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if deliveryOption.transport.deliveryDate.timeDelivered %}
                        {{ deliveryOption.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if deliveryOption.transport.packageType %}
                {{ deliveryOption.transport.packageType.code }}
        {% endif %}
        {% if deliveryOption.transport.image %}
                {{ deliveryOption.transport.image.originalHeight }}
                {{ deliveryOption.transport.image.originalWidth }}
                {{ deliveryOption.transport.image.url }}
                {% if deliveryOption.transport.image.alt %}
                        {{ deliveryOption.transport.image.alt }}
                {% endif %}
                {% if deliveryOption.transport.image.text %}
                        {{ deliveryOption.transport.image.text }}
                {% endif %}
        {% endif %}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}

{% if availability.text %}
        {{ availability.text }}
{% endif %}

{% if availability.dateExpected %}
        {{ availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}

{% if availability.deliveryOption %}
        {{ availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ availability.deliveryOption.transport.inputId }}
        {{ availability.deliveryOption.transport.name }}
        {{ availability.deliveryOption.transport.vatRate }}
        {% if availability.deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if availability.deliveryOption.transport.currier %} ... {% endif %}
        {% if availability.deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if availability.deliveryOption.transport.deliveryAddressRequired %} ... {% endif %}
        {% if availability.deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if availability.deliveryOption.transport.free %} ... {% endif %}
        {% if availability.deliveryOption.transport.pickup %} ... {% endif %}
        {% if availability.deliveryOption.transport.selected %} ... {% endif %}
        {{ availability.deliveryOption.transport.price.vatRate }}
        {% if availability.deliveryOption.transport.price.discountPercent %}
                {{ availability.deliveryOption.transport.price.discountPercent }}
        {% endif %}
        {% if availability.deliveryOption.transport.price.discountValidTo %}
                {{ availability.deliveryOption.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if availability.deliveryOption.transport.price.beforeDiscount %}
        {% endif %}
        {% if availability.deliveryOption.transport.price.discount %}
        {% endif %}
        {% if availability.deliveryOption.transport.text %}
                {{ availability.deliveryOption.transport.text }}
        {% endif %}
        {% if availability.deliveryOption.transport.branch %}
                {{ availability.deliveryOption.transport.branch.code }}
                {{ availability.deliveryOption.transport.branch.name }}
        {% endif %}
        {% if availability.deliveryOption.transport.carrier %}
                {{ availability.deliveryOption.transport.carrier.code }}
                {{ availability.deliveryOption.transport.carrier.name }}
        {% endif %}
        {% if availability.deliveryOption.transport.deliveryDate %}
                {{ availability.deliveryOption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ availability.deliveryOption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ availability.deliveryOption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if availability.deliveryOption.transport.deliveryDate.timeDelivered %}
                        {{ availability.deliveryOption.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if availability.deliveryOption.transport.packageType %}
                {{ availability.deliveryOption.transport.packageType.code }}
        {% endif %}
        {% if availability.deliveryOption.transport.image %}
                {{ availability.deliveryOption.transport.image.originalHeight }}
                {{ availability.deliveryOption.transport.image.originalWidth }}
                {{ availability.deliveryOption.transport.image.url }}
                {% if availability.deliveryOption.transport.image.alt %}
                        {{ availability.deliveryOption.transport.image.alt }}
                {% endif %}
                {% if availability.deliveryOption.transport.image.text %}
                        {{ availability.deliveryOption.transport.image.text }}
                {% endif %}
        {% endif %}
        {% if availability.deliveryOption.timeDelivered %}
                {{ availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}

AvailableUpsellGroup

Attributy objektu AvailableUpsellGroup

Název

Typ

Popis

id

int

ID

name

string

Název skupiny

singleSelection

bool

Režim výběru

upsells

Upsell[]

Dostupné upselly

code

string | null

Název skupiny

Příklady:

{{ availableupsellgroup.id }}
{{ availableupsellgroup.name }}
{% if availableupsellgroup.singleSelection %} ... {% endif %}

{% for upsell in availableupsellgroup.upsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in upsell.product.item.availableUpsells %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {% for upsell in upsell.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% for upsell in upsell.product.variant.availableUpsells %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}

{% if availableupsellgroup.code %}
        {{ availableupsellgroup.code }}
{% endif %}

BannerSection

Sekce bannerů

Attributy objektu BannerSection

Název

Typ

Popis

id

int

Id

height

int | null

Výška (px)

width

int | null

Šířka (px)

code

string | null

Kód sekce

name

string | null

Název

Příklady:

{{ bannersection.id }}

{% if bannersection.height %}
        {{ bannersection.height }}
{% endif %}

{% if bannersection.width %}
        {{ bannersection.width }}
{% endif %}

{% if bannersection.code %}
        {{ bannersection.code }}
{% endif %}

{% if bannersection.name %}
        {{ bannersection.name }}
{% endif %}

Brand

Attributy objektu Brand

Název

Typ

Popis

id

int

ID

name

string

Název

flagImportant

bool

Důležitý

categories

Category[]

Kategorie značky (hezká URL nebo klasický filtr)

url

Url

URL značky

categoryUrl

Url

URL kategorie značky

code

string | null

Kód

web

string | null

Web značky

text

html | null

Text

image

Image | null

Obrázek

seo

Seo | null

SEO attributy

contentGrid

array | null

Content grid

Příklady:

{{ brand.id }}
{{ brand.name }}
{% if brand.flagImportant %} ... {% endif %}

{% for category in brand.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.parent.url }}
                {{ category.parent.url.absolute }}
                {{ category.parent.url.path }}
                {{ category.parent.variantType.id }}
                {{ category.parent.variantType.name }}
                {% for video in category.parent.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                        {{ category.parent.image.originalHeight }}
                        {{ category.parent.image.originalWidth }}
                        {{ category.parent.image.url }}
                        {% if category.parent.image.alt %}
                                {{ category.parent.image.alt }}
                        {% endif %}
                        {% if category.parent.image.text %}
                                {{ category.parent.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ brand.url }}
{{ brand.url.absolute }}
{{ brand.url.path }}
{{ brand.categoryUrl }}
{{ brand.categoryUrl.absolute }}
{{ brand.categoryUrl.path }}

{% if brand.code %}
        {{ brand.code }}
{% endif %}

{% if brand.web %}
        {{ brand.web }}
{% endif %}

{% if brand.text %}
        {{ brand.text }}
{% endif %}

{% if brand.image %}
        {{ brand.image.originalHeight }}
        {{ brand.image.originalWidth }}
        {{ brand.image.url }}
        {% if brand.image.alt %}
                {{ brand.image.alt }}
        {% endif %}
        {% if brand.image.text %}
                {{ brand.image.text }}
        {% endif %}
{% endif %}

{% if brand.seo %}
        {% if brand.seo.description %}
                {{ brand.seo.description }}
        {% endif %}
        {% if brand.seo.keywords %}
                {{ brand.seo.keywords }}
        {% endif %}
        {% if brand.seo.title %}
                {{ brand.seo.title }}
        {% endif %}
{% endif %}

{% if brand.contentGrid %}
        {{ brand.contentGrid }}
{% endif %}

BrandCategory

Attributy objektu BrandCategory

Název

Typ

Popis

brand

Brand

Značka

category

Category

Kategorie

url

Url

URL

parent

BrandCategory | null

Nadřazená kategorie

Příklady:

{{ brandcategory.brand.id }}
{{ brandcategory.brand.name }}
{% if brandcategory.brand.flagImportant %} ... {% endif %}
{% for category in brandcategory.brand.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ brandcategory.brand.url }}
{{ brandcategory.brand.url.absolute }}
{{ brandcategory.brand.url.path }}
{{ brandcategory.brand.categoryUrl }}
{{ brandcategory.brand.categoryUrl.absolute }}
{{ brandcategory.brand.categoryUrl.path }}
{% if brandcategory.brand.code %}
        {{ brandcategory.brand.code }}
{% endif %}
{% if brandcategory.brand.web %}
        {{ brandcategory.brand.web }}
{% endif %}
{% if brandcategory.brand.text %}
        {{ brandcategory.brand.text }}
{% endif %}
{% if brandcategory.brand.image %}
        {{ brandcategory.brand.image.originalHeight }}
        {{ brandcategory.brand.image.originalWidth }}
        {{ brandcategory.brand.image.url }}
        {% if brandcategory.brand.image.alt %}
                {{ brandcategory.brand.image.alt }}
        {% endif %}
        {% if brandcategory.brand.image.text %}
                {{ brandcategory.brand.image.text }}
        {% endif %}
{% endif %}
{% if brandcategory.brand.seo %}
        {% if brandcategory.brand.seo.description %}
                {{ brandcategory.brand.seo.description }}
        {% endif %}
        {% if brandcategory.brand.seo.keywords %}
                {{ brandcategory.brand.seo.keywords }}
        {% endif %}
        {% if brandcategory.brand.seo.title %}
                {{ brandcategory.brand.seo.title }}
        {% endif %}
{% endif %}
{% if brandcategory.brand.contentGrid %}
        {{ brandcategory.brand.contentGrid }}
{% endif %}
{{ brandcategory.category.id }}
{{ brandcategory.category.productCount }}
{{ brandcategory.category.productInStockCount }}
{{ brandcategory.category.totalStockQuantity }}
{{ brandcategory.category.headline }}
{{ brandcategory.category.menuName }}
{{ brandcategory.category.name }}
{% if brandcategory.category.flagErotic %} ... {% endif %}
{% if brandcategory.category.flagImportant %} ... {% endif %}
{% if brandcategory.category.noFollow %} ... {% endif %}
{% for category in brandcategory.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ brandcategory.category.url }}
{{ brandcategory.category.url.absolute }}
{{ brandcategory.category.url.path }}
{{ brandcategory.category.variantType.id }}
{{ brandcategory.category.variantType.name }}
{% for video in brandcategory.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ brandcategory.category.pathIds }}
{{ brandcategory.category.pathNames }}
{{ brandcategory.category.templateAttribute }}
{% if brandcategory.category.subHeadline %}
        {{ brandcategory.category.subHeadline }}
{% endif %}
{% if brandcategory.category.text %}
        {{ brandcategory.category.text }}
{% endif %}
{% if brandcategory.category.parent %}
        {{ brandcategory.category.parent.id }}
        {{ brandcategory.category.parent.productCount }}
        {{ brandcategory.category.parent.productInStockCount }}
        {{ brandcategory.category.parent.totalStockQuantity }}
        {{ brandcategory.category.parent.headline }}
        {{ brandcategory.category.parent.menuName }}
        {{ brandcategory.category.parent.name }}
        {% if brandcategory.category.parent.flagErotic %} ... {% endif %}
        {% if brandcategory.category.parent.flagImportant %} ... {% endif %}
        {% if brandcategory.category.parent.noFollow %} ... {% endif %}
        {% for category in brandcategory.category.parent.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ brandcategory.category.parent.url }}
        {{ brandcategory.category.parent.url.absolute }}
        {{ brandcategory.category.parent.url.path }}
        {{ brandcategory.category.parent.variantType.id }}
        {{ brandcategory.category.parent.variantType.name }}
        {% for video in brandcategory.category.parent.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ brandcategory.category.parent.pathIds }}
        {{ brandcategory.category.parent.pathNames }}
        {{ brandcategory.category.parent.templateAttribute }}
        {% if brandcategory.category.parent.subHeadline %}
                {{ brandcategory.category.parent.subHeadline }}
        {% endif %}
        {% if brandcategory.category.parent.text %}
                {{ brandcategory.category.parent.text }}
        {% endif %}
        {% if brandcategory.category.parent.image %}
                {{ brandcategory.category.parent.image.originalHeight }}
                {{ brandcategory.category.parent.image.originalWidth }}
                {{ brandcategory.category.parent.image.url }}
                {% if brandcategory.category.parent.image.alt %}
                        {{ brandcategory.category.parent.image.alt }}
                {% endif %}
                {% if brandcategory.category.parent.image.text %}
                        {{ brandcategory.category.parent.image.text }}
                {% endif %}
        {% endif %}
        {% if brandcategory.category.parent.contentGrid %}
                {{ brandcategory.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if brandcategory.category.image %}
        {{ brandcategory.category.image.originalHeight }}
        {{ brandcategory.category.image.originalWidth }}
        {{ brandcategory.category.image.url }}
        {% if brandcategory.category.image.alt %}
                {{ brandcategory.category.image.alt }}
        {% endif %}
        {% if brandcategory.category.image.text %}
                {{ brandcategory.category.image.text }}
        {% endif %}
{% endif %}
{% if brandcategory.category.contentGrid %}
        {{ brandcategory.category.contentGrid }}
{% endif %}
{{ brandcategory.url }}
{{ brandcategory.url.absolute }}
{{ brandcategory.url.path }}

{% if brandcategory.parent %}
        {{ brandcategory.parent.brand.id }}
        {{ brandcategory.parent.brand.name }}
        {% if brandcategory.parent.brand.flagImportant %} ... {% endif %}
        {% for category in brandcategory.parent.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ brandcategory.parent.brand.url }}
        {{ brandcategory.parent.brand.url.absolute }}
        {{ brandcategory.parent.brand.url.path }}
        {{ brandcategory.parent.brand.categoryUrl }}
        {{ brandcategory.parent.brand.categoryUrl.absolute }}
        {{ brandcategory.parent.brand.categoryUrl.path }}
        {% if brandcategory.parent.brand.code %}
                {{ brandcategory.parent.brand.code }}
        {% endif %}
        {% if brandcategory.parent.brand.web %}
                {{ brandcategory.parent.brand.web }}
        {% endif %}
        {% if brandcategory.parent.brand.text %}
                {{ brandcategory.parent.brand.text }}
        {% endif %}
        {% if brandcategory.parent.brand.image %}
                {{ brandcategory.parent.brand.image.originalHeight }}
                {{ brandcategory.parent.brand.image.originalWidth }}
                {{ brandcategory.parent.brand.image.url }}
                {% if brandcategory.parent.brand.image.alt %}
                        {{ brandcategory.parent.brand.image.alt }}
                {% endif %}
                {% if brandcategory.parent.brand.image.text %}
                        {{ brandcategory.parent.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if brandcategory.parent.brand.seo %}
                {% if brandcategory.parent.brand.seo.description %}
                        {{ brandcategory.parent.brand.seo.description }}
                {% endif %}
                {% if brandcategory.parent.brand.seo.keywords %}
                        {{ brandcategory.parent.brand.seo.keywords }}
                {% endif %}
                {% if brandcategory.parent.brand.seo.title %}
                        {{ brandcategory.parent.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if brandcategory.parent.brand.contentGrid %}
                {{ brandcategory.parent.brand.contentGrid }}
        {% endif %}
        {{ brandcategory.parent.category.id }}
        {{ brandcategory.parent.category.productCount }}
        {{ brandcategory.parent.category.productInStockCount }}
        {{ brandcategory.parent.category.totalStockQuantity }}
        {{ brandcategory.parent.category.headline }}
        {{ brandcategory.parent.category.menuName }}
        {{ brandcategory.parent.category.name }}
        {% if brandcategory.parent.category.flagErotic %} ... {% endif %}
        {% if brandcategory.parent.category.flagImportant %} ... {% endif %}
        {% if brandcategory.parent.category.noFollow %} ... {% endif %}
        {% for category in brandcategory.parent.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ brandcategory.parent.category.url }}
        {{ brandcategory.parent.category.url.absolute }}
        {{ brandcategory.parent.category.url.path }}
        {{ brandcategory.parent.category.variantType.id }}
        {{ brandcategory.parent.category.variantType.name }}
        {% for video in brandcategory.parent.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ brandcategory.parent.category.pathIds }}
        {{ brandcategory.parent.category.pathNames }}
        {{ brandcategory.parent.category.templateAttribute }}
        {% if brandcategory.parent.category.subHeadline %}
                {{ brandcategory.parent.category.subHeadline }}
        {% endif %}
        {% if brandcategory.parent.category.text %}
                {{ brandcategory.parent.category.text }}
        {% endif %}
        {% if brandcategory.parent.category.image %}
                {{ brandcategory.parent.category.image.originalHeight }}
                {{ brandcategory.parent.category.image.originalWidth }}
                {{ brandcategory.parent.category.image.url }}
                {% if brandcategory.parent.category.image.alt %}
                        {{ brandcategory.parent.category.image.alt }}
                {% endif %}
                {% if brandcategory.parent.category.image.text %}
                        {{ brandcategory.parent.category.image.text }}
                {% endif %}
        {% endif %}
        {% if brandcategory.parent.category.contentGrid %}
                {{ brandcategory.parent.category.contentGrid }}
        {% endif %}
        {{ brandcategory.parent.url }}
        {{ brandcategory.parent.url.absolute }}
        {{ brandcategory.parent.url.path }}
{% endif %}

Bundle

Attributy objektu Bundle

Název

Typ

Popis

multiPack

bool

Je zvýhodněné balení? (více kusů jiné položky)

price

Price | null

Cena kompletu (cena před slevou je součet ceny dílů)

Příklady:

{% if bundle.multiPack %} ... {% endif %}

{% if bundle.price %}
        {{ bundle.price.vatRate }}
        {{ bundle.price.current.currency }}
        {{ bundle.price.current.formatted }}
        {{ bundle.price.current.value }}
        {% if bundle.price.discountPercent %}
                {{ bundle.price.discountPercent }}
        {% endif %}
        {% if bundle.price.discountValidTo %}
                {{ bundle.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if bundle.price.beforeDiscount %}
                {{ bundle.price.beforeDiscount.currency }}
                {{ bundle.price.beforeDiscount.formatted }}
                {{ bundle.price.beforeDiscount.value }}
        {% endif %}
        {% if bundle.price.discount %}
                {{ bundle.price.discount.currency }}
                {{ bundle.price.discount.formatted }}
                {{ bundle.price.discount.value }}
        {% endif %}
{% endif %}

Category

Attributy objektu Category

Název

Typ

Popis

id

int

Interní ID kategorie

productCount

int

Počet produktů v kategorii (přibližný)

productInStockCount

int

Počet produktů skladem v kategorii (přibližný)

totalStockQuantity

int

Počet kusů skladem v kategorii (přibližný)

headline

string

Nadpis

menuName

string

Název kategorie v menu

name

string

Název kategorie

flagErotic

bool

Erotická

flagImportant

bool

Důležitá

noFollow

bool

Je žádoucí, aby vyhledávač procházel odkaz? V šabloně bude typicky zápis <a href={{ category.url }} if:rel=“category.noFollow ? ‚nofollow‘“>

subcategories

Category[]

Podkategorie

url

Url

URL

variantType

VariantType

Typ varianty

videos

Video[]

Videa

pathIds

array

Cesta ke kategorii (id)

pathNames

array

Cesta ke kategorii (názvy)

templateAttribute

mixed

Nastavení vzhledu kategorie

subHeadline

string | null

Podnadpis

text

html | null

Text

parent

Category | null

Nadřazená kategorie

image

Image | null

Obrázek

contentGrid

array | null

Content grid

Příklady:

{{ category.id }}
{{ category.productCount }}
{{ category.productInStockCount }}
{{ category.totalStockQuantity }}
{{ category.headline }}
{{ category.menuName }}
{{ category.name }}
{% if category.flagErotic %} ... {% endif %}
{% if category.flagImportant %} ... {% endif %}
{% if category.noFollow %} ... {% endif %}

{% for category in category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {{ category.parent.url }}
                {{ category.parent.url.absolute }}
                {{ category.parent.url.path }}
                {{ category.parent.variantType.id }}
                {{ category.parent.variantType.name }}
                {% for video in category.parent.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                        {{ category.parent.image.originalHeight }}
                        {{ category.parent.image.originalWidth }}
                        {{ category.parent.image.url }}
                        {% if category.parent.image.alt %}
                                {{ category.parent.image.alt }}
                        {% endif %}
                        {% if category.parent.image.text %}
                                {{ category.parent.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ category.url }}
{{ category.url.absolute }}
{{ category.url.path }}
{{ category.variantType.id }}
{{ category.variantType.name }}

{% for video in category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ category.pathIds }}
{{ category.pathNames }}
{{ category.templateAttribute }}

{% if category.subHeadline %}
        {{ category.subHeadline }}
{% endif %}

{% if category.text %}
        {{ category.text }}
{% endif %}

{% if category.parent %}
        {{ category.parent.id }}
        {{ category.parent.productCount }}
        {{ category.parent.productInStockCount }}
        {{ category.parent.totalStockQuantity }}
        {{ category.parent.headline }}
        {{ category.parent.menuName }}
        {{ category.parent.name }}
        {% if category.parent.flagErotic %} ... {% endif %}
        {% if category.parent.flagImportant %} ... {% endif %}
        {% if category.parent.noFollow %} ... {% endif %}
        {% for category in category.parent.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.parent.url }}
        {{ category.parent.url.absolute }}
        {{ category.parent.url.path }}
        {{ category.parent.variantType.id }}
        {{ category.parent.variantType.name }}
        {% for video in category.parent.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.parent.pathIds }}
        {{ category.parent.pathNames }}
        {{ category.parent.templateAttribute }}
        {% if category.parent.subHeadline %}
                {{ category.parent.subHeadline }}
        {% endif %}
        {% if category.parent.text %}
                {{ category.parent.text }}
        {% endif %}
        {% if category.parent.image %}
                {{ category.parent.image.originalHeight }}
                {{ category.parent.image.originalWidth }}
                {{ category.parent.image.url }}
                {% if category.parent.image.alt %}
                        {{ category.parent.image.alt }}
                {% endif %}
                {% if category.parent.image.text %}
                        {{ category.parent.image.text }}
                {% endif %}
        {% endif %}
        {% if category.parent.contentGrid %}
                {{ category.parent.contentGrid }}
        {% endif %}
{% endif %}

{% if category.image %}
        {{ category.image.originalHeight }}
        {{ category.image.originalWidth }}
        {{ category.image.url }}
        {% if category.image.alt %}
                {{ category.image.alt }}
        {% endif %}
        {% if category.image.text %}
                {{ category.image.text }}
        {% endif %}
{% endif %}

{% if category.contentGrid %}
        {{ category.contentGrid }}
{% endif %}

Comment

Attributy objektu Comment

Název

Typ

Popis

depth

int

Hloubka zanoření

id

int

Id

date

datetime

Datum

important

bool

Důležitý?

replies

Comment[]

Odpovědi na příspěvek

rating

int | null

Hodnocení (1 až 5)

authorName

string | null

Jméno autora

email

string | null

Email autora

phone

string | null

Telefon autora

title

string | null

Titulek

text

html | null

Text příspěvku

admin

Admin | null

Správce eshopu

Příklady:

{{ comment.depth }}
{{ comment.id }}
{{ comment.date|date('d. m. Y H:i') }}
{% if comment.important %} ... {% endif %}

{% for comment in comment.replies %}
        {{ comment.depth }}
        {{ comment.id }}
        {{ comment.date|date('d. m. Y H:i') }}
        {% if comment.important %} ... {% endif %}
        {% if comment.rating %}
                {{ comment.rating }}
        {% endif %}
        {% if comment.authorName %}
                {{ comment.authorName }}
        {% endif %}
        {% if comment.email %}
                {{ comment.email }}
        {% endif %}
        {% if comment.phone %}
                {{ comment.phone }}
        {% endif %}
        {% if comment.title %}
                {{ comment.title }}
        {% endif %}
        {% if comment.text %}
                {{ comment.text }}
        {% endif %}
        {% if comment.admin %}
                {{ comment.admin.id }}
                {{ comment.admin.email }}
                {{ comment.admin.phone }}
                {{ comment.admin.position }}
                {{ comment.admin.name }}
                {% if comment.admin.name.first %}
                        {{ comment.admin.name.first }}
                {% endif %}
                {% if comment.admin.name.last %}
                        {{ comment.admin.name.last }}
                {% endif %}
                {{ comment.admin.image.originalHeight }}
                {{ comment.admin.image.originalWidth }}
                {{ comment.admin.image.url }}
                {% if comment.admin.image.alt %}
                        {{ comment.admin.image.alt }}
                {% endif %}
                {% if comment.admin.image.text %}
                        {{ comment.admin.image.text }}
                {% endif %}
                {% if comment.admin.text %}
                        {{ comment.admin.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if comment.rating %}
        {{ comment.rating }}
{% endif %}

{% if comment.authorName %}
        {{ comment.authorName }}
{% endif %}

{% if comment.email %}
        {{ comment.email }}
{% endif %}

{% if comment.phone %}
        {{ comment.phone }}
{% endif %}

{% if comment.title %}
        {{ comment.title }}
{% endif %}

{% if comment.text %}
        {{ comment.text }}
{% endif %}

{% if comment.admin %}
        {{ comment.admin.id }}
        {{ comment.admin.email }}
        {{ comment.admin.phone }}
        {{ comment.admin.position }}
        {{ comment.admin.name }}
        {% if comment.admin.name.first %}
                {{ comment.admin.name.first }}
        {% endif %}
        {% if comment.admin.name.last %}
                {{ comment.admin.name.last }}
        {% endif %}
        {{ comment.admin.image.originalHeight }}
        {{ comment.admin.image.originalWidth }}
        {{ comment.admin.image.url }}
        {% if comment.admin.image.alt %}
                {{ comment.admin.image.alt }}
        {% endif %}
        {% if comment.admin.image.text %}
                {{ comment.admin.image.text }}
        {% endif %}
        {% if comment.admin.text %}
                {{ comment.admin.text }}
        {% endif %}
{% endif %}

Compatibility/CompatibilityAttribute

Attributy objektu Compatibility/CompatibilityAttribute

Název

Typ

Popis

id

int

ID

name

string

Název

values

Compatibility/CompatibilityAttributeValue[]

Hodnoty

Příklady:

{{ compatibilityattribute.id }}
{{ compatibilityattribute.name }}

{% for compatibilityAttributeValue in compatibilityattribute.values %}
        {{ compatibilityAttributeValue.id }}
        {{ compatibilityAttributeValue.name }}
        {{ compatibilityAttributeValue.attribute.id }}
        {{ compatibilityAttributeValue.attribute.name }}
{% endfor %}

Compatibility/CompatibilityAttributeValue

Hodnota parametru

Attributy objektu Compatibility/CompatibilityAttributeValue

Název

Typ

Popis

id

int

Id

name

string

Název

attribute

Compatibility/CompatibilityAttribute

Parametr

Příklady:

{{ compatibilityattributevalue.id }}
{{ compatibilityattributevalue.name }}
{{ compatibilityattributevalue.attribute.id }}
{{ compatibilityattributevalue.attribute.name }}
{% for compatibilityAttributeValue in compatibilityattributevalue.attribute.values %}
        {{ compatibilityAttributeValue.id }}
        {{ compatibilityAttributeValue.name }}
{% endfor %}

Customer

Registrovaný zákazník

CustomerRO::SORT_POINT_NEWEST, CustomerRO::SORT_POINT_OLDEST })“

„alternativeAddresses“, „array“, „Alternativní adresy zákazníka“ „loyaltyCard“, „string | null“, „Kód věrnostní karty“

Příklady:

{{ customer.id }}
{{ customer.userPointsAvailable }}
{{ customer.userPointsExpiringOn }}
{{ customer.userPointsTotal }}
{{ customer.name }}
{{ customer.dateCreated|date('d. m. Y H:i') }}
{% if customer.productOnWishlist %} ... {% endif %}
{% if customer.wholesale %} ... {% endif %}

{% for accountingDocument in customer.receipts %}
        {{ accountingDocument.code }}
        {{ accountingDocument.date|date('d. m. Y H:i') }}
        {{ accountingDocument.totalPrice.vatRate }}
        {{ accountingDocument.totalPrice.current.currency }}
        {{ accountingDocument.totalPrice.current.formatted }}
        {{ accountingDocument.totalPrice.current.value }}
        {% if accountingDocument.totalPrice.discountPercent %}
                {{ accountingDocument.totalPrice.discountPercent }}
        {% endif %}
        {% if accountingDocument.totalPrice.discountValidTo %}
                {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if accountingDocument.totalPrice.beforeDiscount %}
                {{ accountingDocument.totalPrice.beforeDiscount.currency }}
                {{ accountingDocument.totalPrice.beforeDiscount.formatted }}
                {{ accountingDocument.totalPrice.beforeDiscount.value }}
        {% endif %}
        {% if accountingDocument.totalPrice.discount %}
                {{ accountingDocument.totalPrice.discount.currency }}
                {{ accountingDocument.totalPrice.discount.formatted }}
                {{ accountingDocument.totalPrice.discount.value }}
        {% endif %}
        {{ accountingDocument.pdfUrl }}
        {{ accountingDocument.pdfUrl.absolute }}
        {{ accountingDocument.pdfUrl.path }}
{% endfor %}
{{ customer.address.delivery.name }}
{% if customer.address.delivery.name.first %}
        {{ customer.address.delivery.name.first }}
{% endif %}
{% if customer.address.delivery.name.last %}
        {{ customer.address.delivery.name.last }}
{% endif %}
{% if customer.address.delivery.city %}
        {{ customer.address.delivery.city }}
{% endif %}
{% if customer.address.delivery.company %}
        {{ customer.address.delivery.company }}
{% endif %}
{% if customer.address.delivery.companyId %}
        {{ customer.address.delivery.companyId }}
{% endif %}
{% if customer.address.delivery.email %}
        {{ customer.address.delivery.email }}
{% endif %}
{% if customer.address.delivery.phone %}
        {{ customer.address.delivery.phone }}
{% endif %}
{% if customer.address.delivery.region %}
        {{ customer.address.delivery.region }}
{% endif %}
{% if customer.address.delivery.street %}
        {{ customer.address.delivery.street }}
{% endif %}
{% if customer.address.delivery.vatId %}
        {{ customer.address.delivery.vatId }}
{% endif %}
{% if customer.address.delivery.zip %}
        {{ customer.address.delivery.zip }}
{% endif %}
{% if customer.address.delivery.country %}
        {{ customer.address.delivery.country.code }}
        {{ customer.address.delivery.country.flagCircleUrl }}
        {{ customer.address.delivery.country.flagUrl }}
        {{ customer.address.delivery.country.name }}
        {% if customer.address.delivery.country.eU %} ... {% endif %}
{% endif %}
{{ customer.address.invoice.name }}
{% if customer.address.invoice.name.first %}
        {{ customer.address.invoice.name.first }}
{% endif %}
{% if customer.address.invoice.name.last %}
        {{ customer.address.invoice.name.last }}
{% endif %}
{% if customer.address.invoice.city %}
        {{ customer.address.invoice.city }}
{% endif %}
{% if customer.address.invoice.company %}
        {{ customer.address.invoice.company }}
{% endif %}
{% if customer.address.invoice.companyId %}
        {{ customer.address.invoice.companyId }}
{% endif %}
{% if customer.address.invoice.email %}
        {{ customer.address.invoice.email }}
{% endif %}
{% if customer.address.invoice.phone %}
        {{ customer.address.invoice.phone }}
{% endif %}
{% if customer.address.invoice.region %}
        {{ customer.address.invoice.region }}
{% endif %}
{% if customer.address.invoice.street %}
        {{ customer.address.invoice.street }}
{% endif %}
{% if customer.address.invoice.vatId %}
        {{ customer.address.invoice.vatId }}
{% endif %}
{% if customer.address.invoice.zip %}
        {{ customer.address.invoice.zip }}
{% endif %}
{% if customer.address.invoice.country %}
        {{ customer.address.invoice.country.code }}
        {{ customer.address.invoice.country.flagCircleUrl }}
        {{ customer.address.invoice.country.flagUrl }}
        {{ customer.address.invoice.country.name }}
        {% if customer.address.invoice.country.eU %} ... {% endif %}
{% endif %}

{% for analyticsReport in customer.analyticReports %}
        {{ analyticsReport.name }}
        {{ analyticsReport.url }}
        {{ analyticsReport.url.absolute }}
        {{ analyticsReport.url.path }}
{% endfor %}

{% for order in customer.orders %}
        {{ order.amountOfItem }}
        {{ order.catalogItemCount }}
        {{ order.catalogItemTotalAmount }}
        {{ order.id }}
        {{ order.loyaltyPoints }}
        {{ order.usableLoyaltyPoints }}
        {{ order.language }}
        {{ order.vs }}
        {% if order.containsItem %} ... {% endif %}
        {% if order.erotic %} ... {% endif %}
        {% if order.externalReviewAllowed %} ... {% endif %}
        {% if order.paid %} ... {% endif %}
        {% if order.useLoyaltyPoints %} ... {% endif %}
        {% if order.useLoyaltyPointsManually %} ... {% endif %}
        {% for accountingDocument in order.accountingDocuments %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.address.delivery.city %}
                {{ order.address.delivery.city }}
        {% endif %}
        {% if order.address.delivery.company %}
                {{ order.address.delivery.company }}
        {% endif %}
        {% if order.address.delivery.companyId %}
                {{ order.address.delivery.companyId }}
        {% endif %}
        {% if order.address.delivery.email %}
                {{ order.address.delivery.email }}
        {% endif %}
        {% if order.address.delivery.phone %}
                {{ order.address.delivery.phone }}
        {% endif %}
        {% if order.address.delivery.region %}
                {{ order.address.delivery.region }}
        {% endif %}
        {% if order.address.delivery.street %}
                {{ order.address.delivery.street }}
        {% endif %}
        {% if order.address.delivery.vatId %}
                {{ order.address.delivery.vatId }}
        {% endif %}
        {% if order.address.delivery.zip %}
                {{ order.address.delivery.zip }}
        {% endif %}
        {% if order.address.delivery.country %}
        {% endif %}
        {% if order.address.invoice.city %}
                {{ order.address.invoice.city }}
        {% endif %}
        {% if order.address.invoice.company %}
                {{ order.address.invoice.company }}
        {% endif %}
        {% if order.address.invoice.companyId %}
                {{ order.address.invoice.companyId }}
        {% endif %}
        {% if order.address.invoice.email %}
                {{ order.address.invoice.email }}
        {% endif %}
        {% if order.address.invoice.phone %}
                {{ order.address.invoice.phone }}
        {% endif %}
        {% if order.address.invoice.region %}
                {{ order.address.invoice.region }}
        {% endif %}
        {% if order.address.invoice.street %}
                {{ order.address.invoice.street }}
        {% endif %}
        {% if order.address.invoice.vatId %}
                {{ order.address.invoice.vatId }}
        {% endif %}
        {% if order.address.invoice.zip %}
                {{ order.address.invoice.zip }}
        {% endif %}
        {% if order.address.invoice.country %}
        {% endif %}
        {% for payment in order.availablePaymentMethods %}
                {{ payment.code }}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for payment in order.payments %}
                {{ payment.code }}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for transport in order.availableTransportMethods %}
                {{ transport.inputId }}
                {{ transport.name }}
                {{ transport.vatRate }}
                {% if transport.branchRequired %} ... {% endif %}
                {% if transport.currier %} ... {% endif %}
                {% if transport.dateGuaranteed %} ... {% endif %}
                {% if transport.deliveryAddressRequired %} ... {% endif %}
                {% if transport.deliveryToAddress %} ... {% endif %}
                {% if transport.free %} ... {% endif %}
                {% if transport.pickup %} ... {% endif %}
                {% if transport.selected %} ... {% endif %}
                {{ transport.price.vatRate }}
                {% if transport.price.discountPercent %}
                        {{ transport.price.discountPercent }}
                {% endif %}
                {% if transport.price.discountValidTo %}
                        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if transport.price.beforeDiscount %}
                {% endif %}
                {% if transport.price.discount %}
                {% endif %}
                {% if transport.text %}
                        {{ transport.text }}
                {% endif %}
                {% if transport.branch %}
                        {{ transport.branch.code }}
                        {{ transport.branch.name }}
                {% endif %}
                {% if transport.carrier %}
                        {{ transport.carrier.code }}
                        {{ transport.carrier.name }}
                {% endif %}
                {% if transport.deliveryDate %}
                        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if transport.deliveryDate.timeDelivered %}
                                {{ transport.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if transport.packageType %}
                        {{ transport.packageType.code }}
                {% endif %}
                {% if transport.image %}
                        {{ transport.image.originalHeight }}
                        {{ transport.image.originalWidth }}
                        {{ transport.image.url }}
                        {% if transport.image.alt %}
                                {{ transport.image.alt }}
                        {% endif %}
                        {% if transport.image.text %}
                                {{ transport.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ order.delivery.name }}
        {{ order.delivery.vatRate }}
        {{ order.delivery.payment.code }}
        {{ order.delivery.payment.inputId }}
        {{ order.delivery.payment.name }}
        {{ order.delivery.payment.url }}
        {{ order.delivery.payment.vatRate }}
        {% if order.delivery.payment.free %} ... {% endif %}
        {% if order.delivery.payment.inAdvance %} ... {% endif %}
        {% if order.delivery.payment.selected %} ... {% endif %}
        {% if order.delivery.payment.vs %}
                {{ order.delivery.payment.vs }}
        {% endif %}
        {% if order.delivery.payment.qRCodeHTML %}
                {{ order.delivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.delivery.payment.text %}
                {{ order.delivery.payment.text }}
        {% endif %}
        {% if order.delivery.payment.bankAccount %}
        {% endif %}
        {% if order.delivery.payment.image %}
        {% endif %}
        {{ order.delivery.transport.inputId }}
        {{ order.delivery.transport.name }}
        {{ order.delivery.transport.vatRate }}
        {% if order.delivery.transport.branchRequired %} ... {% endif %}
        {% if order.delivery.transport.currier %} ... {% endif %}
        {% if order.delivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.delivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if order.delivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.delivery.transport.free %} ... {% endif %}
        {% if order.delivery.transport.pickup %} ... {% endif %}
        {% if order.delivery.transport.selected %} ... {% endif %}
        {% if order.delivery.transport.text %}
                {{ order.delivery.transport.text }}
        {% endif %}
        {% if order.delivery.transport.branch %}
        {% endif %}
        {% if order.delivery.transport.carrier %}
        {% endif %}
        {% if order.delivery.transport.deliveryDate %}
        {% endif %}
        {% if order.delivery.transport.packageType %}
        {% endif %}
        {% if order.delivery.transport.image %}
        {% endif %}
        {{ order.delivery.price.vatRate }}
        {% if order.delivery.price.discountPercent %}
                {{ order.delivery.price.discountPercent }}
        {% endif %}
        {% if order.delivery.price.discountValidTo %}
                {{ order.delivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.delivery.price.beforeDiscount %}
        {% endif %}
        {% if order.delivery.price.discount %}
        {% endif %}
        {% if order.delivery.id %}
                {{ order.delivery.id }}
        {% endif %}
        {% if order.delivery.freeLimit %}
                {{ order.delivery.freeLimit.percent }}
        {% endif %}
        {% for catalogItem in order.catalogItems %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for catalogItem in order.items %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for discountItem in order.discountItems %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% for discountItem in discountItem.children %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {{ order.price.total.currency }}
        {{ order.price.total.formatted }}
        {{ order.price.total.value }}
        {{ order.price.unpaid.currency }}
        {{ order.price.unpaid.formatted }}
        {{ order.price.unpaid.value }}
        {{ order.price.paid.currency }}
        {{ order.price.paid.formatted }}
        {{ order.price.paid.value }}
        {{ order.status.id }}
        {{ order.status.name }}
        {% if order.status.subId %}
                {{ order.status.subId }}
        {% endif %}
        {% for socialProfile in order.shop.socialProfiles %}
                {{ socialProfile.type }}
                {{ socialProfile.url }}
        {% endfor %}
        {% if order.shop.email %}
                {{ order.shop.email }}
        {% endif %}
        {% if order.shop.language %}
                {{ order.shop.language }}
        {% endif %}
        {% if order.shop.name %}
                {{ order.shop.name }}
        {% endif %}
        {% if order.shop.phone %}
                {{ order.shop.phone }}
        {% endif %}
        {% if order.shop.url %}
                {{ order.shop.url }}
        {% endif %}
        {% if order.shop.country %}
                {{ order.shop.country.code }}
                {{ order.shop.country.flagCircleUrl }}
                {{ order.shop.country.flagUrl }}
                {{ order.shop.country.name }}
                {% if order.shop.country.eU %} ... {% endif %}
        {% endif %}
        {% if order.shop.image %}
                {{ order.shop.image.originalHeight }}
                {{ order.shop.image.originalWidth }}
                {{ order.shop.image.url }}
                {% if order.shop.image.alt %}
                        {{ order.shop.image.alt }}
                {% endif %}
                {% if order.shop.image.text %}
                        {{ order.shop.image.text }}
                {% endif %}
        {% endif %}
        {{ order.url }}
        {{ order.url.absolute }}
        {{ order.url.path }}
        {% for giftVoucher in order.purchasedGiftVouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
        {% endfor %}
        {% for giftVoucher in order.vouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
        {% endfor %}
        {% if order.code %}
                {{ order.code }}
        {% endif %}
        {% if order.note %}
                {{ order.note }}
        {% endif %}
        {% if order.date %}
                {{ order.date|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.dateInStatus %}
                {{ order.dateInStatus|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.customer %}
                {{ order.customer.id }}
                {{ order.customer.userPointsAvailable }}
                {{ order.customer.userPointsExpiringOn }}
                {{ order.customer.userPointsTotal }}
                {{ order.customer.name }}
                {{ order.customer.dateCreated|date('d. m. Y H:i') }}
                {% if order.customer.productOnWishlist %} ... {% endif %}
                {% if order.customer.wholesale %} ... {% endif %}
                {% for accountingDocument in order.customer.receipts %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for analyticsReport in order.customer.analyticReports %}
                        {{ analyticsReport.name }}
                {% endfor %}
                {% for order in order.customer.childOrders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for userPointChange in order.customer.userPointChanges %}
                        {{ userPointChange.amount }}
                        {{ userPointChange.text }}
                        {{ userPointChange.date|date('d. m. Y H:i') }}
                        {% if userPointChange.dateExpire %}
                                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                        {% endif %}
                {% endfor %}
                {{ order.customer.alternativeAddresses }}
                {% if order.customer.loyaltyCard %}
                        {{ order.customer.loyaltyCard }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery %}
                {{ order.closestFreeDelivery.name }}
                {{ order.closestFreeDelivery.vatRate }}
                {{ order.closestFreeDelivery.payment.code }}
                {{ order.closestFreeDelivery.payment.inputId }}
                {{ order.closestFreeDelivery.payment.name }}
                {{ order.closestFreeDelivery.payment.url }}
                {{ order.closestFreeDelivery.payment.vatRate }}
                {% if order.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.vs %}
                        {{ order.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ order.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.text %}
                        {{ order.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if order.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ order.closestFreeDelivery.transport.inputId }}
                {{ order.closestFreeDelivery.transport.name }}
                {{ order.closestFreeDelivery.transport.vatRate }}
                {% if order.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.text %}
                        {{ order.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if order.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ order.closestFreeDelivery.price.vatRate }}
                {% if order.closestFreeDelivery.price.discountPercent %}
                        {{ order.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if order.closestFreeDelivery.price.discountValidTo %}
                        {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if order.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if order.closestFreeDelivery.id %}
                        {{ order.closestFreeDelivery.id }}
                {% endif %}
                {% if order.closestFreeDelivery.freeLimit %}
                        {{ order.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder %}
                {{ order.parentOrder.amountOfItem }}
                {{ order.parentOrder.catalogItemCount }}
                {{ order.parentOrder.catalogItemTotalAmount }}
                {{ order.parentOrder.id }}
                {{ order.parentOrder.loyaltyPoints }}
                {{ order.parentOrder.usableLoyaltyPoints }}
                {{ order.parentOrder.language }}
                {{ order.parentOrder.vs }}
                {% if order.parentOrder.containsItem %} ... {% endif %}
                {% if order.parentOrder.erotic %} ... {% endif %}
                {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                {% if order.parentOrder.paid %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.parentOrder.availablePaymentMethods %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.parentOrder.payments %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.parentOrder.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryAddressRequired %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.delivery.name }}
                {{ order.parentOrder.delivery.vatRate }}
                {% if order.parentOrder.delivery.id %}
                        {{ order.parentOrder.delivery.id }}
                {% endif %}
                {% if order.parentOrder.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.parentOrder.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.parentOrder.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.parentOrder.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.status.id }}
                {{ order.parentOrder.status.name }}
                {% if order.parentOrder.status.subId %}
                        {{ order.parentOrder.status.subId }}
                {% endif %}
                {% for socialProfile in order.parentOrder.shop.socialProfiles %}
                {% endfor %}
                {% if order.parentOrder.shop.email %}
                        {{ order.parentOrder.shop.email }}
                {% endif %}
                {% if order.parentOrder.shop.language %}
                        {{ order.parentOrder.shop.language }}
                {% endif %}
                {% if order.parentOrder.shop.name %}
                        {{ order.parentOrder.shop.name }}
                {% endif %}
                {% if order.parentOrder.shop.phone %}
                        {{ order.parentOrder.shop.phone }}
                {% endif %}
                {% if order.parentOrder.shop.url %}
                        {{ order.parentOrder.shop.url }}
                {% endif %}
                {% if order.parentOrder.shop.country %}
                {% endif %}
                {% if order.parentOrder.shop.image %}
                {% endif %}
                {{ order.parentOrder.url }}
                {{ order.parentOrder.url.absolute }}
                {{ order.parentOrder.url.path }}
                {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.parentOrder.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.parentOrder.code %}
                        {{ order.parentOrder.code }}
                {% endif %}
                {% if order.parentOrder.note %}
                        {{ order.parentOrder.note }}
                {% endif %}
                {% if order.parentOrder.date %}
                        {{ order.parentOrder.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.dateInStatus %}
                        {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.customer %}
                        {{ order.parentOrder.customer.id }}
                        {{ order.parentOrder.customer.userPointsAvailable }}
                        {{ order.parentOrder.customer.userPointsExpiringOn }}
                        {{ order.parentOrder.customer.userPointsTotal }}
                        {{ order.parentOrder.customer.name }}
                        {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }}
                        {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %}
                        {% if order.parentOrder.customer.wholesale %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.customer.receipts %}
                        {% endfor %}
                        {% for analyticsReport in order.parentOrder.customer.analyticReports %}
                        {% endfor %}
                        {% for order in order.parentOrder.customer.childOrders %}
                        {% endfor %}
                        {% for userPointChange in order.parentOrder.customer.userPointChanges %}
                        {% endfor %}
                        {{ order.parentOrder.customer.alternativeAddresses }}
                        {% if order.parentOrder.customer.loyaltyCard %}
                                {{ order.parentOrder.customer.loyaltyCard }}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery %}
                        {{ order.parentOrder.closestFreeDelivery.name }}
                        {{ order.parentOrder.closestFreeDelivery.vatRate }}
                        {% if order.parentOrder.closestFreeDelivery.id %}
                                {{ order.parentOrder.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.package %}
                        {{ order.parentOrder.package.trackingUrl }}
                        {{ order.parentOrder.package.date|date('d. m. Y H:i') }}
                        {% if order.parentOrder.package.code %}
                                {{ order.parentOrder.package.code }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if order.package %}
                {{ order.package.trackingUrl }}
                {{ order.package.date|date('d. m. Y H:i') }}
                {% if order.package.status.delivered %} ... {% endif %}
                {% if order.package.status.deposited %} ... {% endif %}
                {% if order.package.status.inTransit %} ... {% endif %}
                {% if order.package.status.returned %} ... {% endif %}
                {% if order.package.code %}
                        {{ order.package.code }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for order in customer.childOrders %}
        {{ order.amountOfItem }}
        {{ order.catalogItemCount }}
        {{ order.catalogItemTotalAmount }}
        {{ order.id }}
        {{ order.loyaltyPoints }}
        {{ order.usableLoyaltyPoints }}
        {{ order.language }}
        {{ order.vs }}
        {% if order.containsItem %} ... {% endif %}
        {% if order.erotic %} ... {% endif %}
        {% if order.externalReviewAllowed %} ... {% endif %}
        {% if order.paid %} ... {% endif %}
        {% if order.useLoyaltyPoints %} ... {% endif %}
        {% if order.useLoyaltyPointsManually %} ... {% endif %}
        {% for accountingDocument in order.accountingDocuments %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.address.delivery.city %}
                {{ order.address.delivery.city }}
        {% endif %}
        {% if order.address.delivery.company %}
                {{ order.address.delivery.company }}
        {% endif %}
        {% if order.address.delivery.companyId %}
                {{ order.address.delivery.companyId }}
        {% endif %}
        {% if order.address.delivery.email %}
                {{ order.address.delivery.email }}
        {% endif %}
        {% if order.address.delivery.phone %}
                {{ order.address.delivery.phone }}
        {% endif %}
        {% if order.address.delivery.region %}
                {{ order.address.delivery.region }}
        {% endif %}
        {% if order.address.delivery.street %}
                {{ order.address.delivery.street }}
        {% endif %}
        {% if order.address.delivery.vatId %}
                {{ order.address.delivery.vatId }}
        {% endif %}
        {% if order.address.delivery.zip %}
                {{ order.address.delivery.zip }}
        {% endif %}
        {% if order.address.delivery.country %}
        {% endif %}
        {% if order.address.invoice.city %}
                {{ order.address.invoice.city }}
        {% endif %}
        {% if order.address.invoice.company %}
                {{ order.address.invoice.company }}
        {% endif %}
        {% if order.address.invoice.companyId %}
                {{ order.address.invoice.companyId }}
        {% endif %}
        {% if order.address.invoice.email %}
                {{ order.address.invoice.email }}
        {% endif %}
        {% if order.address.invoice.phone %}
                {{ order.address.invoice.phone }}
        {% endif %}
        {% if order.address.invoice.region %}
                {{ order.address.invoice.region }}
        {% endif %}
        {% if order.address.invoice.street %}
                {{ order.address.invoice.street }}
        {% endif %}
        {% if order.address.invoice.vatId %}
                {{ order.address.invoice.vatId }}
        {% endif %}
        {% if order.address.invoice.zip %}
                {{ order.address.invoice.zip }}
        {% endif %}
        {% if order.address.invoice.country %}
        {% endif %}
        {% for payment in order.availablePaymentMethods %}
                {{ payment.code }}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for payment in order.payments %}
                {{ payment.code }}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for transport in order.availableTransportMethods %}
                {{ transport.inputId }}
                {{ transport.name }}
                {{ transport.vatRate }}
                {% if transport.branchRequired %} ... {% endif %}
                {% if transport.currier %} ... {% endif %}
                {% if transport.dateGuaranteed %} ... {% endif %}
                {% if transport.deliveryAddressRequired %} ... {% endif %}
                {% if transport.deliveryToAddress %} ... {% endif %}
                {% if transport.free %} ... {% endif %}
                {% if transport.pickup %} ... {% endif %}
                {% if transport.selected %} ... {% endif %}
                {{ transport.price.vatRate }}
                {% if transport.price.discountPercent %}
                        {{ transport.price.discountPercent }}
                {% endif %}
                {% if transport.price.discountValidTo %}
                        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if transport.price.beforeDiscount %}
                {% endif %}
                {% if transport.price.discount %}
                {% endif %}
                {% if transport.text %}
                        {{ transport.text }}
                {% endif %}
                {% if transport.branch %}
                        {{ transport.branch.code }}
                        {{ transport.branch.name }}
                {% endif %}
                {% if transport.carrier %}
                        {{ transport.carrier.code }}
                        {{ transport.carrier.name }}
                {% endif %}
                {% if transport.deliveryDate %}
                        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if transport.deliveryDate.timeDelivered %}
                                {{ transport.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if transport.packageType %}
                        {{ transport.packageType.code }}
                {% endif %}
                {% if transport.image %}
                        {{ transport.image.originalHeight }}
                        {{ transport.image.originalWidth }}
                        {{ transport.image.url }}
                        {% if transport.image.alt %}
                                {{ transport.image.alt }}
                        {% endif %}
                        {% if transport.image.text %}
                                {{ transport.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ order.delivery.name }}
        {{ order.delivery.vatRate }}
        {{ order.delivery.payment.code }}
        {{ order.delivery.payment.inputId }}
        {{ order.delivery.payment.name }}
        {{ order.delivery.payment.url }}
        {{ order.delivery.payment.vatRate }}
        {% if order.delivery.payment.free %} ... {% endif %}
        {% if order.delivery.payment.inAdvance %} ... {% endif %}
        {% if order.delivery.payment.selected %} ... {% endif %}
        {% if order.delivery.payment.vs %}
                {{ order.delivery.payment.vs }}
        {% endif %}
        {% if order.delivery.payment.qRCodeHTML %}
                {{ order.delivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.delivery.payment.text %}
                {{ order.delivery.payment.text }}
        {% endif %}
        {% if order.delivery.payment.bankAccount %}
        {% endif %}
        {% if order.delivery.payment.image %}
        {% endif %}
        {{ order.delivery.transport.inputId }}
        {{ order.delivery.transport.name }}
        {{ order.delivery.transport.vatRate }}
        {% if order.delivery.transport.branchRequired %} ... {% endif %}
        {% if order.delivery.transport.currier %} ... {% endif %}
        {% if order.delivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.delivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if order.delivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.delivery.transport.free %} ... {% endif %}
        {% if order.delivery.transport.pickup %} ... {% endif %}
        {% if order.delivery.transport.selected %} ... {% endif %}
        {% if order.delivery.transport.text %}
                {{ order.delivery.transport.text }}
        {% endif %}
        {% if order.delivery.transport.branch %}
        {% endif %}
        {% if order.delivery.transport.carrier %}
        {% endif %}
        {% if order.delivery.transport.deliveryDate %}
        {% endif %}
        {% if order.delivery.transport.packageType %}
        {% endif %}
        {% if order.delivery.transport.image %}
        {% endif %}
        {{ order.delivery.price.vatRate }}
        {% if order.delivery.price.discountPercent %}
                {{ order.delivery.price.discountPercent }}
        {% endif %}
        {% if order.delivery.price.discountValidTo %}
                {{ order.delivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.delivery.price.beforeDiscount %}
        {% endif %}
        {% if order.delivery.price.discount %}
        {% endif %}
        {% if order.delivery.id %}
                {{ order.delivery.id }}
        {% endif %}
        {% if order.delivery.freeLimit %}
                {{ order.delivery.freeLimit.percent }}
        {% endif %}
        {% for catalogItem in order.catalogItems %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for catalogItem in order.items %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for discountItem in order.discountItems %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% for discountItem in discountItem.children %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {{ order.price.total.currency }}
        {{ order.price.total.formatted }}
        {{ order.price.total.value }}
        {{ order.price.unpaid.currency }}
        {{ order.price.unpaid.formatted }}
        {{ order.price.unpaid.value }}
        {{ order.price.paid.currency }}
        {{ order.price.paid.formatted }}
        {{ order.price.paid.value }}
        {{ order.status.id }}
        {{ order.status.name }}
        {% if order.status.subId %}
                {{ order.status.subId }}
        {% endif %}
        {% for socialProfile in order.shop.socialProfiles %}
                {{ socialProfile.type }}
                {{ socialProfile.url }}
        {% endfor %}
        {% if order.shop.email %}
                {{ order.shop.email }}
        {% endif %}
        {% if order.shop.language %}
                {{ order.shop.language }}
        {% endif %}
        {% if order.shop.name %}
                {{ order.shop.name }}
        {% endif %}
        {% if order.shop.phone %}
                {{ order.shop.phone }}
        {% endif %}
        {% if order.shop.url %}
                {{ order.shop.url }}
        {% endif %}
        {% if order.shop.country %}
                {{ order.shop.country.code }}
                {{ order.shop.country.flagCircleUrl }}
                {{ order.shop.country.flagUrl }}
                {{ order.shop.country.name }}
                {% if order.shop.country.eU %} ... {% endif %}
        {% endif %}
        {% if order.shop.image %}
                {{ order.shop.image.originalHeight }}
                {{ order.shop.image.originalWidth }}
                {{ order.shop.image.url }}
                {% if order.shop.image.alt %}
                        {{ order.shop.image.alt }}
                {% endif %}
                {% if order.shop.image.text %}
                        {{ order.shop.image.text }}
                {% endif %}
        {% endif %}
        {{ order.url }}
        {{ order.url.absolute }}
        {{ order.url.path }}
        {% for giftVoucher in order.purchasedGiftVouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
        {% endfor %}
        {% for giftVoucher in order.vouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
        {% endfor %}
        {% if order.code %}
                {{ order.code }}
        {% endif %}
        {% if order.note %}
                {{ order.note }}
        {% endif %}
        {% if order.date %}
                {{ order.date|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.dateInStatus %}
                {{ order.dateInStatus|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.customer %}
                {{ order.customer.id }}
                {{ order.customer.userPointsAvailable }}
                {{ order.customer.userPointsExpiringOn }}
                {{ order.customer.userPointsTotal }}
                {{ order.customer.name }}
                {{ order.customer.dateCreated|date('d. m. Y H:i') }}
                {% if order.customer.productOnWishlist %} ... {% endif %}
                {% if order.customer.wholesale %} ... {% endif %}
                {% for accountingDocument in order.customer.receipts %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for analyticsReport in order.customer.analyticReports %}
                        {{ analyticsReport.name }}
                {% endfor %}
                {% for order in order.customer.orders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for userPointChange in order.customer.userPointChanges %}
                        {{ userPointChange.amount }}
                        {{ userPointChange.text }}
                        {{ userPointChange.date|date('d. m. Y H:i') }}
                        {% if userPointChange.dateExpire %}
                                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                        {% endif %}
                {% endfor %}
                {{ order.customer.alternativeAddresses }}
                {% if order.customer.loyaltyCard %}
                        {{ order.customer.loyaltyCard }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery %}
                {{ order.closestFreeDelivery.name }}
                {{ order.closestFreeDelivery.vatRate }}
                {{ order.closestFreeDelivery.payment.code }}
                {{ order.closestFreeDelivery.payment.inputId }}
                {{ order.closestFreeDelivery.payment.name }}
                {{ order.closestFreeDelivery.payment.url }}
                {{ order.closestFreeDelivery.payment.vatRate }}
                {% if order.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.payment.vs %}
                        {{ order.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ order.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.text %}
                        {{ order.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if order.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ order.closestFreeDelivery.transport.inputId }}
                {{ order.closestFreeDelivery.transport.name }}
                {{ order.closestFreeDelivery.transport.vatRate }}
                {% if order.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if order.closestFreeDelivery.transport.text %}
                        {{ order.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if order.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if order.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ order.closestFreeDelivery.price.vatRate }}
                {% if order.closestFreeDelivery.price.discountPercent %}
                        {{ order.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if order.closestFreeDelivery.price.discountValidTo %}
                        {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if order.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if order.closestFreeDelivery.id %}
                        {{ order.closestFreeDelivery.id }}
                {% endif %}
                {% if order.closestFreeDelivery.freeLimit %}
                        {{ order.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder %}
                {{ order.parentOrder.amountOfItem }}
                {{ order.parentOrder.catalogItemCount }}
                {{ order.parentOrder.catalogItemTotalAmount }}
                {{ order.parentOrder.id }}
                {{ order.parentOrder.loyaltyPoints }}
                {{ order.parentOrder.usableLoyaltyPoints }}
                {{ order.parentOrder.language }}
                {{ order.parentOrder.vs }}
                {% if order.parentOrder.containsItem %} ... {% endif %}
                {% if order.parentOrder.erotic %} ... {% endif %}
                {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                {% if order.parentOrder.paid %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.parentOrder.availablePaymentMethods %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.parentOrder.payments %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.parentOrder.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryAddressRequired %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.delivery.name }}
                {{ order.parentOrder.delivery.vatRate }}
                {% if order.parentOrder.delivery.id %}
                        {{ order.parentOrder.delivery.id }}
                {% endif %}
                {% if order.parentOrder.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.parentOrder.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.parentOrder.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.parentOrder.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.status.id }}
                {{ order.parentOrder.status.name }}
                {% if order.parentOrder.status.subId %}
                        {{ order.parentOrder.status.subId }}
                {% endif %}
                {% for socialProfile in order.parentOrder.shop.socialProfiles %}
                {% endfor %}
                {% if order.parentOrder.shop.email %}
                        {{ order.parentOrder.shop.email }}
                {% endif %}
                {% if order.parentOrder.shop.language %}
                        {{ order.parentOrder.shop.language }}
                {% endif %}
                {% if order.parentOrder.shop.name %}
                        {{ order.parentOrder.shop.name }}
                {% endif %}
                {% if order.parentOrder.shop.phone %}
                        {{ order.parentOrder.shop.phone }}
                {% endif %}
                {% if order.parentOrder.shop.url %}
                        {{ order.parentOrder.shop.url }}
                {% endif %}
                {% if order.parentOrder.shop.country %}
                {% endif %}
                {% if order.parentOrder.shop.image %}
                {% endif %}
                {{ order.parentOrder.url }}
                {{ order.parentOrder.url.absolute }}
                {{ order.parentOrder.url.path }}
                {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.parentOrder.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.parentOrder.code %}
                        {{ order.parentOrder.code }}
                {% endif %}
                {% if order.parentOrder.note %}
                        {{ order.parentOrder.note }}
                {% endif %}
                {% if order.parentOrder.date %}
                        {{ order.parentOrder.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.dateInStatus %}
                        {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.customer %}
                        {{ order.parentOrder.customer.id }}
                        {{ order.parentOrder.customer.userPointsAvailable }}
                        {{ order.parentOrder.customer.userPointsExpiringOn }}
                        {{ order.parentOrder.customer.userPointsTotal }}
                        {{ order.parentOrder.customer.name }}
                        {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }}
                        {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %}
                        {% if order.parentOrder.customer.wholesale %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.customer.receipts %}
                        {% endfor %}
                        {% for analyticsReport in order.parentOrder.customer.analyticReports %}
                        {% endfor %}
                        {% for order in order.parentOrder.customer.orders %}
                        {% endfor %}
                        {% for userPointChange in order.parentOrder.customer.userPointChanges %}
                        {% endfor %}
                        {{ order.parentOrder.customer.alternativeAddresses }}
                        {% if order.parentOrder.customer.loyaltyCard %}
                                {{ order.parentOrder.customer.loyaltyCard }}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery %}
                        {{ order.parentOrder.closestFreeDelivery.name }}
                        {{ order.parentOrder.closestFreeDelivery.vatRate }}
                        {% if order.parentOrder.closestFreeDelivery.id %}
                                {{ order.parentOrder.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder.package %}
                        {{ order.parentOrder.package.trackingUrl }}
                        {{ order.parentOrder.package.date|date('d. m. Y H:i') }}
                        {% if order.parentOrder.package.code %}
                                {{ order.parentOrder.package.code }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if order.package %}
                {{ order.package.trackingUrl }}
                {{ order.package.date|date('d. m. Y H:i') }}
                {% if order.package.status.delivered %} ... {% endif %}
                {% if order.package.status.deposited %} ... {% endif %}
                {% if order.package.status.inTransit %} ... {% endif %}
                {% if order.package.status.returned %} ... {% endif %}
                {% if order.package.code %}
                        {{ order.package.code }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for userPointChange in customer.userPointChanges %}
        {{ userPointChange.amount }}
        {{ userPointChange.text }}
        {{ userPointChange.date|date('d. m. Y H:i') }}
        {% if userPointChange.dateExpire %}
                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
        {% endif %}
{% endfor %}
{{ customer.alternativeAddresses }}

{% if customer.loyaltyCard %}
        {{ customer.loyaltyCard }}
{% endif %}

DayBlock

Attributy objektu DayBlock

Název

Typ

Popis

dayName

string

Název dne v týdnu

dayNameShort

string

Zkrácený název dne v týdnu

date

datetime

Datum

timeBlocks

TimeBlock[] | null

Časy otevření

Příklady:

{{ dayblock.dayName }}
{{ dayblock.dayNameShort }}
{{ dayblock.date|date('d. m. Y H:i') }}

{% for timeBlock in dayblock.timeBlocks %}
        {{ timeBlock.timeBlocks }}
        {{ timeBlock.end }}
        {{ timeBlock.separator }}
        {{ timeBlock.start }}
{% endfor %}

Delivery

Attributy objektu Delivery

Název

Typ

Popis

name

string

Název

vatRate

float

Sazba DPH

payment

Delivery/Payment

Způsob platby

transport

Delivery/Transport

Způsob dodání

price

Price

Cena

id

int | null

ID

freeLimit

Order/FreeLimit | null

Hranice dodání zdarma

Příklady:

{{ delivery.name }}
{{ delivery.vatRate }}
{{ delivery.payment.code }}
{{ delivery.payment.inputId }}
{{ delivery.payment.name }}
{{ delivery.payment.url }}
{{ delivery.payment.vatRate }}
{% if delivery.payment.free %} ... {% endif %}
{% if delivery.payment.inAdvance %} ... {% endif %}
{% if delivery.payment.selected %} ... {% endif %}
{{ delivery.payment.price.vatRate }}
{{ delivery.payment.price.current.currency }}
{{ delivery.payment.price.current.formatted }}
{{ delivery.payment.price.current.value }}
{% if delivery.payment.price.discountPercent %}
        {{ delivery.payment.price.discountPercent }}
{% endif %}
{% if delivery.payment.price.discountValidTo %}
        {{ delivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if delivery.payment.price.beforeDiscount %}
        {{ delivery.payment.price.beforeDiscount.currency }}
        {{ delivery.payment.price.beforeDiscount.formatted }}
        {{ delivery.payment.price.beforeDiscount.value }}
{% endif %}
{% if delivery.payment.price.discount %}
        {{ delivery.payment.price.discount.currency }}
        {{ delivery.payment.price.discount.formatted }}
        {{ delivery.payment.price.discount.value }}
{% endif %}
{% if delivery.payment.vs %}
        {{ delivery.payment.vs }}
{% endif %}
{% if delivery.payment.qRCodeHTML %}
        {{ delivery.payment.qRCodeHTML }}
{% endif %}
{% if delivery.payment.text %}
        {{ delivery.payment.text }}
{% endif %}
{% if delivery.payment.bankAccount %}
        {{ delivery.payment.bankAccount }}
        {{ delivery.payment.bankAccount.currency }}
        {% if delivery.payment.bankAccount.bic %}
                {{ delivery.payment.bankAccount.bic }}
        {% endif %}
        {% if delivery.payment.bankAccount.iban %}
                {{ delivery.payment.bankAccount.iban }}
        {% endif %}
        {% if delivery.payment.bankAccount.local %}
                {{ delivery.payment.bankAccount.local }}
        {% endif %}
{% endif %}
{% if delivery.payment.image %}
        {{ delivery.payment.image.originalHeight }}
        {{ delivery.payment.image.originalWidth }}
        {{ delivery.payment.image.url }}
        {% if delivery.payment.image.alt %}
                {{ delivery.payment.image.alt }}
        {% endif %}
        {% if delivery.payment.image.text %}
                {{ delivery.payment.image.text }}
        {% endif %}
{% endif %}
{{ delivery.transport.inputId }}
{{ delivery.transport.name }}
{{ delivery.transport.vatRate }}
{% if delivery.transport.branchRequired %} ... {% endif %}
{% if delivery.transport.currier %} ... {% endif %}
{% if delivery.transport.dateGuaranteed %} ... {% endif %}
{% if delivery.transport.deliveryAddressRequired %} ... {% endif %}
{% if delivery.transport.deliveryToAddress %} ... {% endif %}
{% if delivery.transport.free %} ... {% endif %}
{% if delivery.transport.pickup %} ... {% endif %}
{% if delivery.transport.selected %} ... {% endif %}
{{ delivery.transport.price.vatRate }}
{{ delivery.transport.price.current.currency }}
{{ delivery.transport.price.current.formatted }}
{{ delivery.transport.price.current.value }}
{% if delivery.transport.price.discountPercent %}
        {{ delivery.transport.price.discountPercent }}
{% endif %}
{% if delivery.transport.price.discountValidTo %}
        {{ delivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if delivery.transport.price.beforeDiscount %}
        {{ delivery.transport.price.beforeDiscount.currency }}
        {{ delivery.transport.price.beforeDiscount.formatted }}
        {{ delivery.transport.price.beforeDiscount.value }}
{% endif %}
{% if delivery.transport.price.discount %}
        {{ delivery.transport.price.discount.currency }}
        {{ delivery.transport.price.discount.formatted }}
        {{ delivery.transport.price.discount.value }}
{% endif %}
{% if delivery.transport.text %}
        {{ delivery.transport.text }}
{% endif %}
{% if delivery.transport.branch %}
        {{ delivery.transport.branch.code }}
        {{ delivery.transport.branch.name }}
        {{ delivery.transport.branch.address }}
        {% if delivery.transport.branch.address.city %}
                {{ delivery.transport.branch.address.city }}
        {% endif %}
        {% if delivery.transport.branch.address.company %}
                {{ delivery.transport.branch.address.company }}
        {% endif %}
        {% if delivery.transport.branch.address.street %}
                {{ delivery.transport.branch.address.street }}
        {% endif %}
        {% if delivery.transport.branch.address.country %}
        {% endif %}
{% endif %}
{% if delivery.transport.carrier %}
        {{ delivery.transport.carrier.code }}
        {{ delivery.transport.carrier.name }}
{% endif %}
{% if delivery.transport.deliveryDate %}
        {{ delivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ delivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ delivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if delivery.transport.deliveryDate.timeDelivered %}
                {{ delivery.transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}
{% if delivery.transport.packageType %}
        {{ delivery.transport.packageType.code }}
{% endif %}
{% if delivery.transport.image %}
        {{ delivery.transport.image.originalHeight }}
        {{ delivery.transport.image.originalWidth }}
        {{ delivery.transport.image.url }}
        {% if delivery.transport.image.alt %}
                {{ delivery.transport.image.alt }}
        {% endif %}
        {% if delivery.transport.image.text %}
                {{ delivery.transport.image.text }}
        {% endif %}
{% endif %}
{{ delivery.price.vatRate }}
{{ delivery.price.current.currency }}
{{ delivery.price.current.formatted }}
{{ delivery.price.current.value }}
{% if delivery.price.discountPercent %}
        {{ delivery.price.discountPercent }}
{% endif %}
{% if delivery.price.discountValidTo %}
        {{ delivery.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if delivery.price.beforeDiscount %}
        {{ delivery.price.beforeDiscount.currency }}
        {{ delivery.price.beforeDiscount.formatted }}
        {{ delivery.price.beforeDiscount.value }}
{% endif %}
{% if delivery.price.discount %}
        {{ delivery.price.discount.currency }}
        {{ delivery.price.discount.formatted }}
        {{ delivery.price.discount.value }}
{% endif %}

{% if delivery.id %}
        {{ delivery.id }}
{% endif %}

{% if delivery.freeLimit %}
        {{ delivery.freeLimit.percent }}
        {{ delivery.freeLimit.total.currency }}
        {{ delivery.freeLimit.total.formatted }}
        {{ delivery.freeLimit.total.value }}
        {{ delivery.freeLimit.remains.currency }}
        {{ delivery.freeLimit.remains.formatted }}
        {{ delivery.freeLimit.remains.value }}
{% endif %}

Delivery/BankAccount

Attributy objektu Delivery/BankAccount

Název

Typ

Popis

Příklad výstupu

currency

string

Měna

bic

string | null

BIC

iban

string | null

IBAN

local

string | null

Místní formát

123456789/2010

Příklady:

{{ bankaccount }}
{{ bankaccount.currency }}

{% if bankaccount.bic %}
        {{ bankaccount.bic }}
{% endif %}

{% if bankaccount.iban %}
        {{ bankaccount.iban }}
{% endif %}

{% if bankaccount.local %}
        {{ bankaccount.local }}
{% endif %}

Delivery/Branch

Attributy objektu Delivery/Branch

Název

Typ

Popis

code

string

Kód

name

string

Název

address

Delivery/Branch/Address

Adresa

Příklady:

{{ branch.code }}
{{ branch.name }}
{{ branch.address }}
{% if branch.address.city %}
        {{ branch.address.city }}
{% endif %}
{% if branch.address.company %}
        {{ branch.address.company }}
{% endif %}
{% if branch.address.street %}
        {{ branch.address.street }}
{% endif %}
{% if branch.address.country %}
        {{ branch.address.country.code }}
        {{ branch.address.country.flagCircleUrl }}
        {{ branch.address.country.flagUrl }}
        {{ branch.address.country.name }}
        {% if branch.address.country.eU %} ... {% endif %}
{% endif %}

Delivery/Branch/Address

Attributy objektu Delivery/Branch/Address

Název

Typ

Popis

city

string | null

Město

company

string | null

Název firmy

street

string | null

Ulice a č.p.

country

Address/Country | null

Země

Příklady:

{{ address }}

{% if address.city %}
        {{ address.city }}
{% endif %}

{% if address.company %}
        {{ address.company }}
{% endif %}

{% if address.street %}
        {{ address.street }}
{% endif %}

{% if address.country %}
        {{ address.country.code }}
        {{ address.country.flagCircleUrl }}
        {{ address.country.flagUrl }}
        {{ address.country.name }}
        {% if address.country.eU %} ... {% endif %}
{% endif %}

Delivery/Carrier

Attributy objektu Delivery/Carrier

Název

Typ

Popis

code

string

Kód

name

string

Název

Příklady:

{{ carrier.code }}
{{ carrier.name }}

Delivery/DeliveryDate

Attributy objektu Delivery/DeliveryDate

Název

Typ

Popis

dateDelivered

datetime

Datum dodání k zákazníkovi

dateSent

datetime

Datum odeslání zásilky

orderDeadline

datetime

Datum a čas do kdy je nutné objednat pro splnění termínů

timeDelivered

string | null

Čas doručení zákazníkovi (např. „08:00-12:00“)

Příklady:

{{ deliverydate.dateDelivered|date('d. m. Y H:i') }}
{{ deliverydate.dateSent|date('d. m. Y H:i') }}
{{ deliverydate.orderDeadline|date('d. m. Y H:i') }}

{% if deliverydate.timeDelivered %}
        {{ deliverydate.timeDelivered }}
{% endif %}

Delivery/PackageType

Attributy objektu Delivery/PackageType

Název

Typ

Popis

code

string

Kód

Příklady:

{{ packagetype.code }}

Delivery/Payment

Attributy objektu Delivery/Payment

Název

Typ

Popis

Příklad výstupu

code

string

Kód

P123

inputId

string

Id pro svázání inputu s label

name

string

Název

Bankovní převod

url

string

URL pro platbu

vatRate

float

Sazba DPH

21

free

bool

Je zdarma?

inAdvance

bool

Je vyžadována platba předem?

selected

bool

Je vybrána?

price

Price

Cena

vs

string | null

Variabilní symbol

2160001

qRCodeHTML

html | null

HTML kód obrázku s QR kódem pro platbu převodem

text

html | null

Text

bankAccount

Delivery/BankAccount | null

Bankovní účet

111111111/2010

image

Image | null

Obrázek

Příklady:

{{ payment.code }}
{{ payment.inputId }}
{{ payment.name }}
{{ payment.url }}
{{ payment.vatRate }}
{% if payment.free %} ... {% endif %}
{% if payment.inAdvance %} ... {% endif %}
{% if payment.selected %} ... {% endif %}
{{ payment.price.vatRate }}
{{ payment.price.current.currency }}
{{ payment.price.current.formatted }}
{{ payment.price.current.value }}
{% if payment.price.discountPercent %}
        {{ payment.price.discountPercent }}
{% endif %}
{% if payment.price.discountValidTo %}
        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if payment.price.beforeDiscount %}
        {{ payment.price.beforeDiscount.currency }}
        {{ payment.price.beforeDiscount.formatted }}
        {{ payment.price.beforeDiscount.value }}
{% endif %}
{% if payment.price.discount %}
        {{ payment.price.discount.currency }}
        {{ payment.price.discount.formatted }}
        {{ payment.price.discount.value }}
{% endif %}

{% if payment.vs %}
        {{ payment.vs }}
{% endif %}

{% if payment.qRCodeHTML %}
        {{ payment.qRCodeHTML }}
{% endif %}

{% if payment.text %}
        {{ payment.text }}
{% endif %}

{% if payment.bankAccount %}
        {{ payment.bankAccount }}
        {{ payment.bankAccount.currency }}
        {% if payment.bankAccount.bic %}
                {{ payment.bankAccount.bic }}
        {% endif %}
        {% if payment.bankAccount.iban %}
                {{ payment.bankAccount.iban }}
        {% endif %}
        {% if payment.bankAccount.local %}
                {{ payment.bankAccount.local }}
        {% endif %}
{% endif %}

{% if payment.image %}
        {{ payment.image.originalHeight }}
        {{ payment.image.originalWidth }}
        {{ payment.image.url }}
        {% if payment.image.alt %}
                {{ payment.image.alt }}
        {% endif %}
        {% if payment.image.text %}
                {{ payment.image.text }}
        {% endif %}
{% endif %}

Delivery/Transport

Attributy objektu Delivery/Transport

Název

Typ

Popis

inputId

string

Id pro svázání inputu s label

name

string

Název

vatRate

float

Sazba DPH

branchRequired

bool

Je vyžadování pobočka?

currier

bool

Je osobním kurýrem?

dateGuaranteed

bool

Je datum doručení jisté?

deliveryAddressRequired

bool

Je v košíku povinná adresa?

deliveryToAddress

bool

Je doprava doručením na (domovní) adresu?

free

bool

Je zdarma?

pickup

bool

Je osobním odběrem?

selected

bool

Je vybráno?

price

Price

Cena

text

html | null

Text

branch

Delivery/Branch | null

Pobočka

carrier

Delivery/Carrier | null

Přepravce

deliveryDate

Delivery/DeliveryDate | null

Předpokládaný datum doručení

packageType

Delivery/PackageType | null

Typ balíku

image

Image | null

Obrázek

Příklady:

{{ transport.inputId }}
{{ transport.name }}
{{ transport.vatRate }}
{% if transport.branchRequired %} ... {% endif %}
{% if transport.currier %} ... {% endif %}
{% if transport.dateGuaranteed %} ... {% endif %}
{% if transport.deliveryAddressRequired %} ... {% endif %}
{% if transport.deliveryToAddress %} ... {% endif %}
{% if transport.free %} ... {% endif %}
{% if transport.pickup %} ... {% endif %}
{% if transport.selected %} ... {% endif %}
{{ transport.price.vatRate }}
{{ transport.price.current.currency }}
{{ transport.price.current.formatted }}
{{ transport.price.current.value }}
{% if transport.price.discountPercent %}
        {{ transport.price.discountPercent }}
{% endif %}
{% if transport.price.discountValidTo %}
        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if transport.price.beforeDiscount %}
        {{ transport.price.beforeDiscount.currency }}
        {{ transport.price.beforeDiscount.formatted }}
        {{ transport.price.beforeDiscount.value }}
{% endif %}
{% if transport.price.discount %}
        {{ transport.price.discount.currency }}
        {{ transport.price.discount.formatted }}
        {{ transport.price.discount.value }}
{% endif %}

{% if transport.text %}
        {{ transport.text }}
{% endif %}

{% if transport.branch %}
        {{ transport.branch.code }}
        {{ transport.branch.name }}
        {{ transport.branch.address }}
        {% if transport.branch.address.city %}
                {{ transport.branch.address.city }}
        {% endif %}
        {% if transport.branch.address.company %}
                {{ transport.branch.address.company }}
        {% endif %}
        {% if transport.branch.address.street %}
                {{ transport.branch.address.street }}
        {% endif %}
        {% if transport.branch.address.country %}
                {{ transport.branch.address.country.code }}
                {{ transport.branch.address.country.flagCircleUrl }}
                {{ transport.branch.address.country.flagUrl }}
                {{ transport.branch.address.country.name }}
                {% if transport.branch.address.country.eU %} ... {% endif %}
        {% endif %}
{% endif %}

{% if transport.carrier %}
        {{ transport.carrier.code }}
        {{ transport.carrier.name }}
{% endif %}

{% if transport.deliveryDate %}
        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if transport.deliveryDate.timeDelivered %}
                {{ transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}

{% if transport.packageType %}
        {{ transport.packageType.code }}
{% endif %}

{% if transport.image %}
        {{ transport.image.originalHeight }}
        {{ transport.image.originalWidth }}
        {{ transport.image.url }}
        {% if transport.image.alt %}
                {{ transport.image.alt }}
        {% endif %}
        {% if transport.image.text %}
                {{ transport.image.text }}
        {% endif %}
{% endif %}

DeliveryOption

Attributy objektu DeliveryOption

Název

Typ

Popis

dateDelivered

datetime

Datum dodání k zákazníkovi

dateSent

datetime

Datum odeslání zásilky

orderDeadline

datetime

Datum a čas do kdy je nutné objednat pro splnění termínů

transport

Delivery/Transport

Přepravce

timeDelivered

string | null

Čas doručení zákazníkovi (např. „08:00-12:00“)

Příklady:

{{ deliveryoption.dateDelivered|date('d. m. Y H:i') }}
{{ deliveryoption.dateSent|date('d. m. Y H:i') }}
{{ deliveryoption.orderDeadline|date('d. m. Y H:i') }}
{{ deliveryoption.transport.inputId }}
{{ deliveryoption.transport.name }}
{{ deliveryoption.transport.vatRate }}
{% if deliveryoption.transport.branchRequired %} ... {% endif %}
{% if deliveryoption.transport.currier %} ... {% endif %}
{% if deliveryoption.transport.dateGuaranteed %} ... {% endif %}
{% if deliveryoption.transport.deliveryAddressRequired %} ... {% endif %}
{% if deliveryoption.transport.deliveryToAddress %} ... {% endif %}
{% if deliveryoption.transport.free %} ... {% endif %}
{% if deliveryoption.transport.pickup %} ... {% endif %}
{% if deliveryoption.transport.selected %} ... {% endif %}
{{ deliveryoption.transport.price.vatRate }}
{{ deliveryoption.transport.price.current.currency }}
{{ deliveryoption.transport.price.current.formatted }}
{{ deliveryoption.transport.price.current.value }}
{% if deliveryoption.transport.price.discountPercent %}
        {{ deliveryoption.transport.price.discountPercent }}
{% endif %}
{% if deliveryoption.transport.price.discountValidTo %}
        {{ deliveryoption.transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if deliveryoption.transport.price.beforeDiscount %}
        {{ deliveryoption.transport.price.beforeDiscount.currency }}
        {{ deliveryoption.transport.price.beforeDiscount.formatted }}
        {{ deliveryoption.transport.price.beforeDiscount.value }}
{% endif %}
{% if deliveryoption.transport.price.discount %}
        {{ deliveryoption.transport.price.discount.currency }}
        {{ deliveryoption.transport.price.discount.formatted }}
        {{ deliveryoption.transport.price.discount.value }}
{% endif %}
{% if deliveryoption.transport.text %}
        {{ deliveryoption.transport.text }}
{% endif %}
{% if deliveryoption.transport.branch %}
        {{ deliveryoption.transport.branch.code }}
        {{ deliveryoption.transport.branch.name }}
        {{ deliveryoption.transport.branch.address }}
        {% if deliveryoption.transport.branch.address.city %}
                {{ deliveryoption.transport.branch.address.city }}
        {% endif %}
        {% if deliveryoption.transport.branch.address.company %}
                {{ deliveryoption.transport.branch.address.company }}
        {% endif %}
        {% if deliveryoption.transport.branch.address.street %}
                {{ deliveryoption.transport.branch.address.street }}
        {% endif %}
        {% if deliveryoption.transport.branch.address.country %}
        {% endif %}
{% endif %}
{% if deliveryoption.transport.carrier %}
        {{ deliveryoption.transport.carrier.code }}
        {{ deliveryoption.transport.carrier.name }}
{% endif %}
{% if deliveryoption.transport.deliveryDate %}
        {{ deliveryoption.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryoption.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ deliveryoption.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryoption.transport.deliveryDate.timeDelivered %}
                {{ deliveryoption.transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}
{% if deliveryoption.transport.packageType %}
        {{ deliveryoption.transport.packageType.code }}
{% endif %}
{% if deliveryoption.transport.image %}
        {{ deliveryoption.transport.image.originalHeight }}
        {{ deliveryoption.transport.image.originalWidth }}
        {{ deliveryoption.transport.image.url }}
        {% if deliveryoption.transport.image.alt %}
                {{ deliveryoption.transport.image.alt }}
        {% endif %}
        {% if deliveryoption.transport.image.text %}
                {{ deliveryoption.transport.image.text }}
        {% endif %}
{% endif %}

{% if deliveryoption.timeDelivered %}
        {{ deliveryoption.timeDelivered }}
{% endif %}

Dimensions

Attributy objektu Dimensions

Název

Typ

Popis

height

int

Výška

length

int

Hloubka

width

int

Šířka

unit

string

Jendotka

Příklady:

{{ dimensions }}
{{ dimensions.height }}
{{ dimensions.length }}
{{ dimensions.width }}
{{ dimensions.unit }}

DynamicCategory

Attributy objektu DynamicCategory

Název

Typ

Popis

id

int

Id

name

string

Název

dynamic

bool

Dynamická kategorie? (vždy true))

url

Url

URL značky

text

html | null

Text

image

Image | null

Obrázek

seo

Seo | null

SEO attributy

Příklady:

{{ dynamiccategory.id }}
{{ dynamiccategory.name }}
{% if dynamiccategory.dynamic %} ... {% endif %}
{{ dynamiccategory.url }}
{{ dynamiccategory.url.absolute }}
{{ dynamiccategory.url.path }}

{% if dynamiccategory.text %}
        {{ dynamiccategory.text }}
{% endif %}

{% if dynamiccategory.image %}
        {{ dynamiccategory.image.originalHeight }}
        {{ dynamiccategory.image.originalWidth }}
        {{ dynamiccategory.image.url }}
        {% if dynamiccategory.image.alt %}
                {{ dynamiccategory.image.alt }}
        {% endif %}
        {% if dynamiccategory.image.text %}
                {{ dynamiccategory.image.text }}
        {% endif %}
{% endif %}

{% if dynamiccategory.seo %}
        {% if dynamiccategory.seo.description %}
                {{ dynamiccategory.seo.description }}
        {% endif %}
        {% if dynamiccategory.seo.keywords %}
                {{ dynamiccategory.seo.keywords }}
        {% endif %}
        {% if dynamiccategory.seo.title %}
                {{ dynamiccategory.seo.title }}
        {% endif %}
{% endif %}

EmptyOrder

Attributy objektu EmptyOrder

Název

Typ

Popis

catalogItemTotalAmount

int

Celkový počet kusů v objednávce

price

Order/Price

Celkové ceny

closestFreeDelivery

Delivery | null

Nejbližší dostupná doprava zdarma

Příklady:

{{ emptyorder.catalogItemTotalAmount }}
{{ emptyorder.price.total.currency }}
{{ emptyorder.price.total.formatted }}
{{ emptyorder.price.total.value }}
{{ emptyorder.price.unpaid.currency }}
{{ emptyorder.price.unpaid.formatted }}
{{ emptyorder.price.unpaid.value }}
{{ emptyorder.price.paid.currency }}
{{ emptyorder.price.paid.formatted }}
{{ emptyorder.price.paid.value }}

{% if emptyorder.closestFreeDelivery %}
        {{ emptyorder.closestFreeDelivery.name }}
        {{ emptyorder.closestFreeDelivery.vatRate }}
        {{ emptyorder.closestFreeDelivery.payment.code }}
        {{ emptyorder.closestFreeDelivery.payment.inputId }}
        {{ emptyorder.closestFreeDelivery.payment.name }}
        {{ emptyorder.closestFreeDelivery.payment.url }}
        {{ emptyorder.closestFreeDelivery.payment.vatRate }}
        {% if emptyorder.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.selected %} ... {% endif %}
        {{ emptyorder.closestFreeDelivery.payment.price.vatRate }}
        {% if emptyorder.closestFreeDelivery.payment.price.discountPercent %}
                {{ emptyorder.closestFreeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.price.discountValidTo %}
                {{ emptyorder.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.price.discount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.vs %}
                {{ emptyorder.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.qRCodeHTML %}
                {{ emptyorder.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.text %}
                {{ emptyorder.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.bankAccount %}
                {{ emptyorder.closestFreeDelivery.payment.bankAccount }}
                {{ emptyorder.closestFreeDelivery.payment.bankAccount.currency }}
                {% if emptyorder.closestFreeDelivery.payment.bankAccount.bic %}
                        {{ emptyorder.closestFreeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.payment.bankAccount.iban %}
                        {{ emptyorder.closestFreeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.payment.bankAccount.local %}
                        {{ emptyorder.closestFreeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.payment.image %}
                {{ emptyorder.closestFreeDelivery.payment.image.originalHeight }}
                {{ emptyorder.closestFreeDelivery.payment.image.originalWidth }}
                {{ emptyorder.closestFreeDelivery.payment.image.url }}
                {% if emptyorder.closestFreeDelivery.payment.image.alt %}
                        {{ emptyorder.closestFreeDelivery.payment.image.alt }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.payment.image.text %}
                        {{ emptyorder.closestFreeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ emptyorder.closestFreeDelivery.transport.inputId }}
        {{ emptyorder.closestFreeDelivery.transport.name }}
        {{ emptyorder.closestFreeDelivery.transport.vatRate }}
        {% if emptyorder.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.selected %} ... {% endif %}
        {{ emptyorder.closestFreeDelivery.transport.price.vatRate }}
        {% if emptyorder.closestFreeDelivery.transport.price.discountPercent %}
                {{ emptyorder.closestFreeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.price.discountValidTo %}
                {{ emptyorder.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.price.discount %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.text %}
                {{ emptyorder.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.branch %}
                {{ emptyorder.closestFreeDelivery.transport.branch.code }}
                {{ emptyorder.closestFreeDelivery.transport.branch.name }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.carrier %}
                {{ emptyorder.closestFreeDelivery.transport.carrier.code }}
                {{ emptyorder.closestFreeDelivery.transport.carrier.name }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.deliveryDate %}
                {{ emptyorder.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ emptyorder.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ emptyorder.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if emptyorder.closestFreeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ emptyorder.closestFreeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.packageType %}
                {{ emptyorder.closestFreeDelivery.transport.packageType.code }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.transport.image %}
                {{ emptyorder.closestFreeDelivery.transport.image.originalHeight }}
                {{ emptyorder.closestFreeDelivery.transport.image.originalWidth }}
                {{ emptyorder.closestFreeDelivery.transport.image.url }}
                {% if emptyorder.closestFreeDelivery.transport.image.alt %}
                        {{ emptyorder.closestFreeDelivery.transport.image.alt }}
                {% endif %}
                {% if emptyorder.closestFreeDelivery.transport.image.text %}
                        {{ emptyorder.closestFreeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ emptyorder.closestFreeDelivery.price.vatRate }}
        {{ emptyorder.closestFreeDelivery.price.current.currency }}
        {{ emptyorder.closestFreeDelivery.price.current.formatted }}
        {{ emptyorder.closestFreeDelivery.price.current.value }}
        {% if emptyorder.closestFreeDelivery.price.discountPercent %}
                {{ emptyorder.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.discountValidTo %}
                {{ emptyorder.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.beforeDiscount %}
                {{ emptyorder.closestFreeDelivery.price.beforeDiscount.currency }}
                {{ emptyorder.closestFreeDelivery.price.beforeDiscount.formatted }}
                {{ emptyorder.closestFreeDelivery.price.beforeDiscount.value }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.price.discount %}
                {{ emptyorder.closestFreeDelivery.price.discount.currency }}
                {{ emptyorder.closestFreeDelivery.price.discount.formatted }}
                {{ emptyorder.closestFreeDelivery.price.discount.value }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.id %}
                {{ emptyorder.closestFreeDelivery.id }}
        {% endif %}
        {% if emptyorder.closestFreeDelivery.freeLimit %}
                {{ emptyorder.closestFreeDelivery.freeLimit.percent }}
                {{ emptyorder.closestFreeDelivery.freeLimit.total.currency }}
                {{ emptyorder.closestFreeDelivery.freeLimit.total.formatted }}
                {{ emptyorder.closestFreeDelivery.freeLimit.total.value }}
                {{ emptyorder.closestFreeDelivery.freeLimit.remains.currency }}
                {{ emptyorder.closestFreeDelivery.freeLimit.remains.formatted }}
                {{ emptyorder.closestFreeDelivery.freeLimit.remains.value }}
        {% endif %}
{% endif %}

EnumValue

Hodnota číselníku

Attributy objektu EnumValue

Název

Typ

Popis

id

int

Id

name

string

Název

enum

ProductEnum

Číselník

text

html | null

Text

image

Image | null

Obrázek

Příklady:

{{ enumvalue.id }}
{{ enumvalue.name }}
{{ enumvalue.enum.id }}
{{ enumvalue.enum.name }}
{% for enumValue in enumvalue.enum.values %}
        {{ enumValue.id }}
        {{ enumValue.name }}
        {% if enumValue.text %}
                {{ enumValue.text }}
        {% endif %}
        {% if enumValue.image %}
                {{ enumValue.image.originalHeight }}
                {{ enumValue.image.originalWidth }}
                {{ enumValue.image.url }}
                {% if enumValue.image.alt %}
                        {{ enumValue.image.alt }}
                {% endif %}
                {% if enumValue.image.text %}
                        {{ enumValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% if enumvalue.enum.text %}
        {{ enumvalue.enum.text }}
{% endif %}
{% if enumvalue.enum.meaning %}
        {{ enumvalue.enum.meaning.code }}
{% endif %}

{% if enumvalue.text %}
        {{ enumvalue.text }}
{% endif %}

{% if enumvalue.image %}
        {{ enumvalue.image.originalHeight }}
        {{ enumvalue.image.originalWidth }}
        {{ enumvalue.image.url }}
        {% if enumvalue.image.alt %}
                {{ enumvalue.image.alt }}
        {% endif %}
        {% if enumvalue.image.text %}
                {{ enumvalue.image.text }}
        {% endif %}
{% endif %}

Event/CartItemChange

Attributy objektu Event/CartItemChange

Název

Typ

Popis

amountChange

int

Počet přidaných/odebraných kusů

rowId

int

ID řádku objednávku pro deduplikaci v trackingu

catalogItem

Item

Položka (varianta nebo produkt)

price

Price

Cena za kus

Příklady:

{{ cartitemchange.amountChange }}
{{ cartitemchange.rowId }}
{{ cartitemchange.catalogItem.id }}
{{ cartitemchange.catalogItem.name }}
{{ cartitemchange.catalogItem.trackingId }}
{% if cartitemchange.catalogItem.digital %} ... {% endif %}
{% if cartitemchange.catalogItem.sellable %} ... {% endif %}
{% if cartitemchange.catalogItem.service %} ... {% endif %}
{{ cartitemchange.catalogItem.availability.availableAmount }}
{{ cartitemchange.catalogItem.availability.availableAmountInShowroom }}
{{ cartitemchange.catalogItem.availability.availableAmountInStockroom }}
{{ cartitemchange.catalogItem.availability.availableAmountInStorageCenter }}
{{ cartitemchange.catalogItem.availability.hours }}
{{ cartitemchange.catalogItem.availability.totalAmount }}
{% if cartitemchange.catalogItem.availability.inShowroom %} ... {% endif %}
{% if cartitemchange.catalogItem.availability.inStock %} ... {% endif %}
{% if cartitemchange.catalogItem.availability.preorder %} ... {% endif %}
{% if cartitemchange.catalogItem.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in cartitemchange.catalogItem.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% if cartitemchange.catalogItem.availability.text %}
        {{ cartitemchange.catalogItem.availability.text }}
{% endif %}
{% if cartitemchange.catalogItem.availability.dateExpected %}
        {{ cartitemchange.catalogItem.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if cartitemchange.catalogItem.availability.deliveryOption %}
        {{ cartitemchange.catalogItem.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ cartitemchange.catalogItem.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ cartitemchange.catalogItem.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if cartitemchange.catalogItem.availability.deliveryOption.timeDelivered %}
                {{ cartitemchange.catalogItem.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}
{% for availableUpsellGroup in cartitemchange.catalogItem.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.id }}
{{ cartitemchange.catalogItem.product.name }}
{{ cartitemchange.catalogItem.product.trackingId }}
{{ cartitemchange.catalogItem.product.dateCreated|date('d. m. Y H:i') }}
{% if cartitemchange.catalogItem.product.active %} ... {% endif %}
{% if cartitemchange.catalogItem.product.compared %} ... {% endif %}
{% if cartitemchange.catalogItem.product.differentVariantPrices %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagNew %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagPromo %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagSecondHand %} ... {% endif %}
{% if cartitemchange.catalogItem.product.flagSellout %} ... {% endif %}
{% if cartitemchange.catalogItem.product.otherDiscountApplicable %} ... {% endif %}
{% if cartitemchange.catalogItem.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in cartitemchange.catalogItem.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
        {% endif %}
        {% if attributeInstance.image %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in cartitemchange.catalogItem.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.category.id }}
{{ cartitemchange.catalogItem.product.category.productCount }}
{{ cartitemchange.catalogItem.product.category.productInStockCount }}
{{ cartitemchange.catalogItem.product.category.totalStockQuantity }}
{{ cartitemchange.catalogItem.product.category.headline }}
{{ cartitemchange.catalogItem.product.category.menuName }}
{{ cartitemchange.catalogItem.product.category.name }}
{% if cartitemchange.catalogItem.product.category.flagErotic %} ... {% endif %}
{% if cartitemchange.catalogItem.product.category.flagImportant %} ... {% endif %}
{% if cartitemchange.catalogItem.product.category.noFollow %} ... {% endif %}
{% for category in cartitemchange.catalogItem.product.category.subcategories %}
{% endfor %}
{% for video in cartitemchange.catalogItem.product.category.videos %}
{% endfor %}
{{ cartitemchange.catalogItem.product.category.pathIds }}
{{ cartitemchange.catalogItem.product.category.pathNames }}
{{ cartitemchange.catalogItem.product.category.templateAttribute }}
{% if cartitemchange.catalogItem.product.category.subHeadline %}
        {{ cartitemchange.catalogItem.product.category.subHeadline }}
{% endif %}
{% if cartitemchange.catalogItem.product.category.text %}
        {{ cartitemchange.catalogItem.product.category.text }}
{% endif %}
{% if cartitemchange.catalogItem.product.category.parent %}
{% endif %}
{% if cartitemchange.catalogItem.product.category.image %}
{% endif %}
{% if cartitemchange.catalogItem.product.category.contentGrid %}
        {{ cartitemchange.catalogItem.product.category.contentGrid }}
{% endif %}
{% for category in cartitemchange.catalogItem.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in cartitemchange.catalogItem.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in cartitemchange.catalogItem.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in cartitemchange.catalogItem.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.item.id }}
{{ cartitemchange.catalogItem.product.item.name }}
{{ cartitemchange.catalogItem.product.item.trackingId }}
{% if cartitemchange.catalogItem.product.item.digital %} ... {% endif %}
{% if cartitemchange.catalogItem.product.item.sellable %} ... {% endif %}
{% if cartitemchange.catalogItem.product.item.service %} ... {% endif %}
{% for availableUpsellGroup in cartitemchange.catalogItem.product.item.availableUpsellGroups %}
{% endfor %}
{% for upsell in cartitemchange.catalogItem.product.item.availableUpsells %}
{% endfor %}
{{ cartitemchange.catalogItem.product.item.trackingIds }}
{{ cartitemchange.catalogItem.product.item.storageLocations }}
{% if cartitemchange.catalogItem.product.item.packageHeight %}
        {{ cartitemchange.catalogItem.product.item.packageHeight }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageLength %}
        {{ cartitemchange.catalogItem.product.item.packageLength }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageWeight %}
        {{ cartitemchange.catalogItem.product.item.packageWeight }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageWidth %}
        {{ cartitemchange.catalogItem.product.item.packageWidth }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.code %}
        {{ cartitemchange.catalogItem.product.item.code }}
{% endif %}
{% if cartitemchange.catalogItem.product.item.bundle %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.cheapestDelivery %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.freeDelivery %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.closestFreeDelivery %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.packageDimensions %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.image %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.price %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.url %}
{% endif %}
{% if cartitemchange.catalogItem.product.item.variant %}
{% endif %}
{% for label in cartitemchange.catalogItem.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
        {% endif %}
{% endfor %}
{% for productEnumValue in cartitemchange.catalogItem.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {% for variant in productEnumValue.variants %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
        {% endif %}
        {% if productEnumValue.variantImage %}
        {% endif %}
{% endfor %}
{% for product in cartitemchange.catalogItem.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.categories %}
        {% endfor %}
        {% for category in product.otherCategories %}
        {% endfor %}
        {% for file in product.files %}
        {% endfor %}
        {% for image in product.images %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.images360 %}
        {% endfor %}
        {% for image in product.currentImages %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.otherImages %}
        {% endfor %}
        {% for label in product.labels %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
        {% endfor %}
        {% for upsell in product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.currentVariants %}
        {% endfor %}
        {% for variant in product.variants %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.videos %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
        {% endif %}
        {% if product.brand %}
        {% endif %}
        {% if product.imageForEnumValueId %}
        {% endif %}
        {% if product.image %}
        {% endif %}
        {% if product.successor %}
        {% endif %}
        {% if product.seo %}
        {% endif %}
        {% if product.supplier %}
        {% endif %}
        {% if product.unit %}
        {% endif %}
        {% if product.variant %}
        {% endif %}
        {% if product.warranty %}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.rating.count }}
{% if cartitemchange.catalogItem.product.rating.voted %} ... {% endif %}
{% if cartitemchange.catalogItem.product.rating.average %}
        {{ cartitemchange.catalogItem.product.rating.average }}
{% endif %}
{% for upsell in cartitemchange.catalogItem.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.url }}
{{ cartitemchange.catalogItem.product.url.absolute }}
{{ cartitemchange.catalogItem.product.url.path }}
{% for variantChoiceStep in cartitemchange.catalogItem.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
        {% endif %}
        {% if variantChoiceStep.info %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
        {% endif %}
{% endfor %}
{% for variant in cartitemchange.catalogItem.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in cartitemchange.catalogItem.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in cartitemchange.catalogItem.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.variantType.id }}
{{ cartitemchange.catalogItem.product.variantType.name }}
{% for video in cartitemchange.catalogItem.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.product.trackingIds }}
{% if cartitemchange.catalogItem.product.currentSubName %}
        {{ cartitemchange.catalogItem.product.currentSubName }}
{% endif %}
{% if cartitemchange.catalogItem.product.nameSuffix %}
        {{ cartitemchange.catalogItem.product.nameSuffix }}
{% endif %}
{% if cartitemchange.catalogItem.product.nameSupplier %}
        {{ cartitemchange.catalogItem.product.nameSupplier }}
{% endif %}
{% if cartitemchange.catalogItem.product.text %}
        {{ cartitemchange.catalogItem.product.text }}
{% endif %}
{% if cartitemchange.catalogItem.product.attribute %}
        {{ cartitemchange.catalogItem.product.attribute.name }}
        {{ cartitemchange.catalogItem.product.attribute.valuesHtml }}
        {% for attributeValueInstance in cartitemchange.catalogItem.product.attribute.values %}
        {% endfor %}
        {% if cartitemchange.catalogItem.product.attribute.description %}
                {{ cartitemchange.catalogItem.product.attribute.description }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.attribute.group %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.attribute.image %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.brand %}
        {{ cartitemchange.catalogItem.product.brand.id }}
        {{ cartitemchange.catalogItem.product.brand.name }}
        {% if cartitemchange.catalogItem.product.brand.flagImportant %} ... {% endif %}
        {% for category in cartitemchange.catalogItem.product.brand.categories %}
        {% endfor %}
        {% if cartitemchange.catalogItem.product.brand.code %}
                {{ cartitemchange.catalogItem.product.brand.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.web %}
                {{ cartitemchange.catalogItem.product.brand.web }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.text %}
                {{ cartitemchange.catalogItem.product.brand.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.seo %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.brand.contentGrid %}
                {{ cartitemchange.catalogItem.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.imageForEnumValueId %}
        {{ cartitemchange.catalogItem.product.imageForEnumValueId.originalHeight }}
        {{ cartitemchange.catalogItem.product.imageForEnumValueId.originalWidth }}
        {{ cartitemchange.catalogItem.product.imageForEnumValueId.url }}
        {% if cartitemchange.catalogItem.product.imageForEnumValueId.alt %}
                {{ cartitemchange.catalogItem.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.imageForEnumValueId.text %}
                {{ cartitemchange.catalogItem.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.image %}
        {{ cartitemchange.catalogItem.product.image.originalHeight }}
        {{ cartitemchange.catalogItem.product.image.originalWidth }}
        {{ cartitemchange.catalogItem.product.image.url }}
        {% if cartitemchange.catalogItem.product.image.alt %}
                {{ cartitemchange.catalogItem.product.image.alt }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.image.text %}
                {{ cartitemchange.catalogItem.product.image.text }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.successor %}
        {{ cartitemchange.catalogItem.product.successor.id }}
        {{ cartitemchange.catalogItem.product.successor.name }}
        {{ cartitemchange.catalogItem.product.successor.trackingId }}
        {{ cartitemchange.catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if cartitemchange.catalogItem.product.successor.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.compared %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagNew %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagPromo %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagSecondHand %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.flagSellout %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in cartitemchange.catalogItem.product.successor.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.product.successor.availableUpsellGroups %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.product.successor.categories %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.product.successor.otherCategories %}
        {% endfor %}
        {% for file in cartitemchange.catalogItem.product.successor.files %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.images %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.imagesWithEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.images360 %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.currentImages %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.successor.otherImages %}
        {% endfor %}
        {% for label in cartitemchange.catalogItem.product.successor.labels %}
        {% endfor %}
        {% for productEnumValue in cartitemchange.catalogItem.product.successor.enumValues %}
        {% endfor %}
        {% for product in cartitemchange.catalogItem.product.successor.packTemplateProducts %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.product.successor.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in cartitemchange.catalogItem.product.successor.variantChoiceSteps %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.product.successor.currentVariants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.product.successor.variants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.product.successor.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in cartitemchange.catalogItem.product.successor.videos %}
        {% endfor %}
        {{ cartitemchange.catalogItem.product.successor.trackingIds }}
        {% if cartitemchange.catalogItem.product.successor.currentSubName %}
                {{ cartitemchange.catalogItem.product.successor.currentSubName }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.nameSuffix %}
                {{ cartitemchange.catalogItem.product.successor.nameSuffix }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.nameSupplier %}
                {{ cartitemchange.catalogItem.product.successor.nameSupplier }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.text %}
                {{ cartitemchange.catalogItem.product.successor.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.attribute %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.brand %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.imageForEnumValueId %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.seo %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.supplier %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.unit %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.variant %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.warranty %}
        {% endif %}
        {% if cartitemchange.catalogItem.product.successor.contentGrid %}
                {{ cartitemchange.catalogItem.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.seo %}
        {% if cartitemchange.catalogItem.product.seo.description %}
                {{ cartitemchange.catalogItem.product.seo.description }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.seo.keywords %}
                {{ cartitemchange.catalogItem.product.seo.keywords }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.seo.title %}
                {{ cartitemchange.catalogItem.product.seo.title }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.supplier %}
        {{ cartitemchange.catalogItem.product.supplier.id }}
        {{ cartitemchange.catalogItem.product.supplier.name }}
{% endif %}
{% if cartitemchange.catalogItem.product.unit %}
        {{ cartitemchange.catalogItem.product.unit.name }}
{% endif %}
{% if cartitemchange.catalogItem.product.variant %}
        {{ cartitemchange.catalogItem.product.variant.id }}
        {{ cartitemchange.catalogItem.product.variant.name }}
        {{ cartitemchange.catalogItem.product.variant.trackingId }}
        {% if cartitemchange.catalogItem.product.variant.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.product.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in cartitemchange.catalogItem.product.variant.enumValues %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.product.variant.images %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.product.variant.availableUpsells %}
        {% endfor %}
        {% if cartitemchange.catalogItem.product.variant.legacyRel %}
                {{ cartitemchange.catalogItem.product.variant.legacyRel }}
        {% endif %}
        {% if cartitemchange.catalogItem.product.variant.image %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.product.warranty %}
        {{ cartitemchange.catalogItem.product.warranty.months }}
{% endif %}
{% if cartitemchange.catalogItem.product.contentGrid %}
        {{ cartitemchange.catalogItem.product.contentGrid }}
{% endif %}
{% for upsell in cartitemchange.catalogItem.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in upsell.product.categories %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
        {% endfor %}
        {% for file in upsell.product.files %}
        {% endfor %}
        {% for image in upsell.product.images %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
        {% endfor %}
        {% for label in upsell.product.labels %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in upsell.product.videos %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
        {% endif %}
        {% if upsell.product.brand %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if upsell.product.image %}
        {% endif %}
        {% if upsell.product.successor %}
        {% endif %}
        {% if upsell.product.seo %}
        {% endif %}
        {% if upsell.product.supplier %}
        {% endif %}
        {% if upsell.product.unit %}
        {% endif %}
        {% if upsell.product.variant %}
        {% endif %}
        {% if upsell.product.warranty %}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ cartitemchange.catalogItem.trackingIds }}
{{ cartitemchange.catalogItem.storageLocations }}
{% if cartitemchange.catalogItem.packageHeight %}
        {{ cartitemchange.catalogItem.packageHeight }}
{% endif %}
{% if cartitemchange.catalogItem.packageLength %}
        {{ cartitemchange.catalogItem.packageLength }}
{% endif %}
{% if cartitemchange.catalogItem.packageWeight %}
        {{ cartitemchange.catalogItem.packageWeight }}
{% endif %}
{% if cartitemchange.catalogItem.packageWidth %}
        {{ cartitemchange.catalogItem.packageWidth }}
{% endif %}
{% if cartitemchange.catalogItem.code %}
        {{ cartitemchange.catalogItem.code }}
{% endif %}
{% if cartitemchange.catalogItem.bundle %}
        {% if cartitemchange.catalogItem.bundle.multiPack %} ... {% endif %}
        {% if cartitemchange.catalogItem.bundle.price %}
                {{ cartitemchange.catalogItem.bundle.price.vatRate }}
                {% if cartitemchange.catalogItem.bundle.price.discountPercent %}
                        {{ cartitemchange.catalogItem.bundle.price.discountPercent }}
                {% endif %}
                {% if cartitemchange.catalogItem.bundle.price.discountValidTo %}
                        {{ cartitemchange.catalogItem.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if cartitemchange.catalogItem.bundle.price.beforeDiscount %}
                {% endif %}
                {% if cartitemchange.catalogItem.bundle.price.discount %}
                {% endif %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.cheapestDelivery %}
        {{ cartitemchange.catalogItem.cheapestDelivery.inputId }}
        {{ cartitemchange.catalogItem.cheapestDelivery.name }}
        {{ cartitemchange.catalogItem.cheapestDelivery.vatRate }}
        {% if cartitemchange.catalogItem.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.currier %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.pickup %} ... {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.selected %} ... {% endif %}
        {{ cartitemchange.catalogItem.cheapestDelivery.price.vatRate }}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.discountPercent %}
                {{ cartitemchange.catalogItem.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.discountValidTo %}
                {{ cartitemchange.catalogItem.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.beforeDiscount %}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.price.discount %}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.text %}
                {{ cartitemchange.catalogItem.cheapestDelivery.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.branch %}
                {{ cartitemchange.catalogItem.cheapestDelivery.branch.code }}
                {{ cartitemchange.catalogItem.cheapestDelivery.branch.name }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.carrier %}
                {{ cartitemchange.catalogItem.cheapestDelivery.carrier.code }}
                {{ cartitemchange.catalogItem.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.deliveryDate %}
                {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if cartitemchange.catalogItem.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ cartitemchange.catalogItem.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.packageType %}
                {{ cartitemchange.catalogItem.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.cheapestDelivery.image %}
                {{ cartitemchange.catalogItem.cheapestDelivery.image.originalHeight }}
                {{ cartitemchange.catalogItem.cheapestDelivery.image.originalWidth }}
                {{ cartitemchange.catalogItem.cheapestDelivery.image.url }}
                {% if cartitemchange.catalogItem.cheapestDelivery.image.alt %}
                        {{ cartitemchange.catalogItem.cheapestDelivery.image.alt }}
                {% endif %}
                {% if cartitemchange.catalogItem.cheapestDelivery.image.text %}
                        {{ cartitemchange.catalogItem.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.freeDelivery %}
        {{ cartitemchange.catalogItem.freeDelivery.name }}
        {{ cartitemchange.catalogItem.freeDelivery.vatRate }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.code }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.inputId }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.name }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.url }}
        {{ cartitemchange.catalogItem.freeDelivery.payment.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.payment.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.vs %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.vs }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.qRCodeHTML %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.text %}
                {{ cartitemchange.catalogItem.freeDelivery.payment.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.bankAccount %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.payment.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.freeDelivery.transport.inputId }}
        {{ cartitemchange.catalogItem.freeDelivery.transport.name }}
        {{ cartitemchange.catalogItem.freeDelivery.transport.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.currier %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.pickup %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.text %}
                {{ cartitemchange.catalogItem.freeDelivery.transport.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.branch %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.carrier %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.packageType %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.transport.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.freeDelivery.price.vatRate }}
        {% if cartitemchange.catalogItem.freeDelivery.price.discountPercent %}
                {{ cartitemchange.catalogItem.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.price.discountValidTo %}
                {{ cartitemchange.catalogItem.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.price.discount %}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.id %}
                {{ cartitemchange.catalogItem.freeDelivery.id }}
        {% endif %}
        {% if cartitemchange.catalogItem.freeDelivery.freeLimit %}
                {{ cartitemchange.catalogItem.freeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.closestFreeDelivery %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.name }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.vatRate }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.code }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.inputId }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.name }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.url }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.payment.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.vs %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.qRCodeHTML %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.text %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.bankAccount %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.payment.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.transport.inputId }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.transport.name }}
        {{ cartitemchange.catalogItem.closestFreeDelivery.transport.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.selected %} ... {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.text %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.branch %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.carrier %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.packageType %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.transport.image %}
        {% endif %}
        {{ cartitemchange.catalogItem.closestFreeDelivery.price.vatRate }}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.discountPercent %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.discountValidTo %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.price.discount %}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.id %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.id }}
        {% endif %}
        {% if cartitemchange.catalogItem.closestFreeDelivery.freeLimit %}
                {{ cartitemchange.catalogItem.closestFreeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.packageDimensions %}
        {{ cartitemchange.catalogItem.packageDimensions }}
        {{ cartitemchange.catalogItem.packageDimensions.height }}
        {{ cartitemchange.catalogItem.packageDimensions.length }}
        {{ cartitemchange.catalogItem.packageDimensions.width }}
        {{ cartitemchange.catalogItem.packageDimensions.unit }}
{% endif %}
{% if cartitemchange.catalogItem.image %}
        {{ cartitemchange.catalogItem.image.originalHeight }}
        {{ cartitemchange.catalogItem.image.originalWidth }}
        {{ cartitemchange.catalogItem.image.url }}
        {% if cartitemchange.catalogItem.image.alt %}
                {{ cartitemchange.catalogItem.image.alt }}
        {% endif %}
        {% if cartitemchange.catalogItem.image.text %}
                {{ cartitemchange.catalogItem.image.text }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.price %}
        {{ cartitemchange.catalogItem.price.vatRate }}
        {{ cartitemchange.catalogItem.price.current.currency }}
        {{ cartitemchange.catalogItem.price.current.formatted }}
        {{ cartitemchange.catalogItem.price.current.value }}
        {% if cartitemchange.catalogItem.price.discountPercent %}
                {{ cartitemchange.catalogItem.price.discountPercent }}
        {% endif %}
        {% if cartitemchange.catalogItem.price.discountValidTo %}
                {{ cartitemchange.catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if cartitemchange.catalogItem.price.beforeDiscount %}
                {{ cartitemchange.catalogItem.price.beforeDiscount.currency }}
                {{ cartitemchange.catalogItem.price.beforeDiscount.formatted }}
                {{ cartitemchange.catalogItem.price.beforeDiscount.value }}
        {% endif %}
        {% if cartitemchange.catalogItem.price.discount %}
                {{ cartitemchange.catalogItem.price.discount.currency }}
                {{ cartitemchange.catalogItem.price.discount.formatted }}
                {{ cartitemchange.catalogItem.price.discount.value }}
        {% endif %}
{% endif %}
{% if cartitemchange.catalogItem.url %}
        {{ cartitemchange.catalogItem.url }}
        {{ cartitemchange.catalogItem.url.absolute }}
        {{ cartitemchange.catalogItem.url.path }}
{% endif %}
{% if cartitemchange.catalogItem.variant %}
        {{ cartitemchange.catalogItem.variant.id }}
        {{ cartitemchange.catalogItem.variant.name }}
        {{ cartitemchange.catalogItem.variant.trackingId }}
        {% if cartitemchange.catalogItem.variant.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in cartitemchange.catalogItem.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.item.id }}
        {{ cartitemchange.catalogItem.variant.item.name }}
        {{ cartitemchange.catalogItem.variant.item.trackingId }}
        {% if cartitemchange.catalogItem.variant.item.digital %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.item.sellable %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.variant.item.availableUpsells %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.item.trackingIds }}
        {{ cartitemchange.catalogItem.variant.item.storageLocations }}
        {% if cartitemchange.catalogItem.variant.item.packageHeight %}
                {{ cartitemchange.catalogItem.variant.item.packageHeight }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageLength %}
                {{ cartitemchange.catalogItem.variant.item.packageLength }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageWeight %}
                {{ cartitemchange.catalogItem.variant.item.packageWeight }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageWidth %}
                {{ cartitemchange.catalogItem.variant.item.packageWidth }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.code %}
                {{ cartitemchange.catalogItem.variant.item.code }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.bundle %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.cheapestDelivery %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.freeDelivery %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.closestFreeDelivery %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.packageDimensions %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.price %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.item.url %}
        {% endif %}
        {{ cartitemchange.catalogItem.variant.product.id }}
        {{ cartitemchange.catalogItem.variant.product.name }}
        {{ cartitemchange.catalogItem.variant.product.trackingId }}
        {{ cartitemchange.catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if cartitemchange.catalogItem.variant.product.active %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.compared %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagNew %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagPromo %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagSecondHand %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.flagSellout %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if cartitemchange.catalogItem.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in cartitemchange.catalogItem.variant.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in cartitemchange.catalogItem.variant.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.variant.product.categories %}
        {% endfor %}
        {% for category in cartitemchange.catalogItem.variant.product.otherCategories %}
        {% endfor %}
        {% for file in cartitemchange.catalogItem.variant.product.files %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.images %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.images360 %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.currentImages %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in cartitemchange.catalogItem.variant.product.otherImages %}
        {% endfor %}
        {% for label in cartitemchange.catalogItem.variant.product.labels %}
        {% endfor %}
        {% for productEnumValue in cartitemchange.catalogItem.variant.product.enumValues %}
        {% endfor %}
        {% for product in cartitemchange.catalogItem.variant.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in cartitemchange.catalogItem.variant.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in cartitemchange.catalogItem.variant.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.variant.product.currentVariants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.variant.product.variants %}
        {% endfor %}
        {% for variant in cartitemchange.catalogItem.variant.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in cartitemchange.catalogItem.variant.product.videos %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.product.trackingIds }}
        {% if cartitemchange.catalogItem.variant.product.currentSubName %}
                {{ cartitemchange.catalogItem.variant.product.currentSubName }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.nameSuffix %}
                {{ cartitemchange.catalogItem.variant.product.nameSuffix }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.nameSupplier %}
                {{ cartitemchange.catalogItem.variant.product.nameSupplier }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.text %}
                {{ cartitemchange.catalogItem.variant.product.text }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.attribute %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.brand %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.imageForEnumValueId %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.image %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.successor %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.seo %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.supplier %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.unit %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.warranty %}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.product.contentGrid %}
                {{ cartitemchange.catalogItem.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in cartitemchange.catalogItem.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ cartitemchange.catalogItem.variant.url }}
        {{ cartitemchange.catalogItem.variant.url.absolute }}
        {{ cartitemchange.catalogItem.variant.url.path }}
        {% if cartitemchange.catalogItem.variant.legacyRel %}
                {{ cartitemchange.catalogItem.variant.legacyRel }}
        {% endif %}
        {% if cartitemchange.catalogItem.variant.image %}
                {{ cartitemchange.catalogItem.variant.image.originalHeight }}
                {{ cartitemchange.catalogItem.variant.image.originalWidth }}
                {{ cartitemchange.catalogItem.variant.image.url }}
                {% if cartitemchange.catalogItem.variant.image.alt %}
                        {{ cartitemchange.catalogItem.variant.image.alt }}
                {% endif %}
                {% if cartitemchange.catalogItem.variant.image.text %}
                        {{ cartitemchange.catalogItem.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{{ cartitemchange.price.vatRate }}
{{ cartitemchange.price.current.currency }}
{{ cartitemchange.price.current.formatted }}
{{ cartitemchange.price.current.value }}
{% if cartitemchange.price.discountPercent %}
        {{ cartitemchange.price.discountPercent }}
{% endif %}
{% if cartitemchange.price.discountValidTo %}
        {{ cartitemchange.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if cartitemchange.price.beforeDiscount %}
        {{ cartitemchange.price.beforeDiscount.currency }}
        {{ cartitemchange.price.beforeDiscount.formatted }}
        {{ cartitemchange.price.beforeDiscount.value }}
{% endif %}
{% if cartitemchange.price.discount %}
        {{ cartitemchange.price.discount.currency }}
        {{ cartitemchange.price.discount.formatted }}
        {{ cartitemchange.price.discount.value }}
{% endif %}

File

Soubor

Attributy objektu File

Název

Typ

Popis

bytes

int

Velikost v bytech

url

string

Url

usage

FileUsage

Způsob použití

mime

string | null

Mime type

name

string | null

Název

Příklady:

{{ file.bytes }}
{{ file.url }}
{% if file.usage.archive %} ... {% endif %}
{% if file.usage.graphic %} ... {% endif %}
{% if file.usage.manual %} ... {% endif %}
{% if file.usage.other %} ... {% endif %}
{% if file.usage.sound %} ... {% endif %}
{% if file.usage.specification %} ... {% endif %}

{% if file.mime %}
        {{ file.mime }}
{% endif %}

{% if file.name %}
        {{ file.name }}
{% endif %}

FileUsage

Attributy objektu FileUsage

Název

Typ

Popis

archive

bool

Archiv

graphic

bool

Grafický

manual

bool

Manuál

other

bool

Ostatní

sound

bool

Zvuk

specification

bool

Specifikace

Příklady:

{% if fileusage.archive %} ... {% endif %}
{% if fileusage.graphic %} ... {% endif %}
{% if fileusage.manual %} ... {% endif %}
{% if fileusage.other %} ... {% endif %}
{% if fileusage.sound %} ... {% endif %}
{% if fileusage.specification %} ... {% endif %}

Gift

Attributy objektu Gift

Název

Typ

Popis

id

int

Id

name

string

Název

item

Item

Položka

image

Image | null

Obrázek

Příklady:

{{ gift.id }}
{{ gift.name }}
{{ gift.item.id }}
{{ gift.item.name }}
{{ gift.item.trackingId }}
{% if gift.item.digital %} ... {% endif %}
{% if gift.item.sellable %} ... {% endif %}
{% if gift.item.service %} ... {% endif %}
{{ gift.item.availability.availableAmount }}
{{ gift.item.availability.availableAmountInShowroom }}
{{ gift.item.availability.availableAmountInStockroom }}
{{ gift.item.availability.availableAmountInStorageCenter }}
{{ gift.item.availability.hours }}
{{ gift.item.availability.totalAmount }}
{% if gift.item.availability.inShowroom %} ... {% endif %}
{% if gift.item.availability.inStock %} ... {% endif %}
{% if gift.item.availability.preorder %} ... {% endif %}
{% if gift.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in gift.item.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% if gift.item.availability.text %}
        {{ gift.item.availability.text }}
{% endif %}
{% if gift.item.availability.dateExpected %}
        {{ gift.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if gift.item.availability.deliveryOption %}
        {{ gift.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ gift.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ gift.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if gift.item.availability.deliveryOption.timeDelivered %}
                {{ gift.item.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}
{% for availableUpsellGroup in gift.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ gift.item.product.id }}
{{ gift.item.product.name }}
{{ gift.item.product.trackingId }}
{{ gift.item.product.dateCreated|date('d. m. Y H:i') }}
{% if gift.item.product.active %} ... {% endif %}
{% if gift.item.product.compared %} ... {% endif %}
{% if gift.item.product.differentVariantPrices %} ... {% endif %}
{% if gift.item.product.flagNew %} ... {% endif %}
{% if gift.item.product.flagPromo %} ... {% endif %}
{% if gift.item.product.flagSecondHand %} ... {% endif %}
{% if gift.item.product.flagSellout %} ... {% endif %}
{% if gift.item.product.otherDiscountApplicable %} ... {% endif %}
{% if gift.item.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in gift.item.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
        {% endif %}
        {% if attributeInstance.image %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in gift.item.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ gift.item.product.category.id }}
{{ gift.item.product.category.productCount }}
{{ gift.item.product.category.productInStockCount }}
{{ gift.item.product.category.totalStockQuantity }}
{{ gift.item.product.category.headline }}
{{ gift.item.product.category.menuName }}
{{ gift.item.product.category.name }}
{% if gift.item.product.category.flagErotic %} ... {% endif %}
{% if gift.item.product.category.flagImportant %} ... {% endif %}
{% if gift.item.product.category.noFollow %} ... {% endif %}
{% for category in gift.item.product.category.subcategories %}
{% endfor %}
{% for video in gift.item.product.category.videos %}
{% endfor %}
{{ gift.item.product.category.pathIds }}
{{ gift.item.product.category.pathNames }}
{{ gift.item.product.category.templateAttribute }}
{% if gift.item.product.category.subHeadline %}
        {{ gift.item.product.category.subHeadline }}
{% endif %}
{% if gift.item.product.category.text %}
        {{ gift.item.product.category.text }}
{% endif %}
{% if gift.item.product.category.parent %}
{% endif %}
{% if gift.item.product.category.image %}
{% endif %}
{% if gift.item.product.category.contentGrid %}
        {{ gift.item.product.category.contentGrid }}
{% endif %}
{% for category in gift.item.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in gift.item.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in gift.item.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in gift.item.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for label in gift.item.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
        {% endif %}
{% endfor %}
{% for productEnumValue in gift.item.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {% for variant in productEnumValue.variants %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
        {% endif %}
        {% if productEnumValue.variantImage %}
        {% endif %}
{% endfor %}
{% for product in gift.item.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.categories %}
        {% endfor %}
        {% for category in product.otherCategories %}
        {% endfor %}
        {% for file in product.files %}
        {% endfor %}
        {% for image in product.images %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.images360 %}
        {% endfor %}
        {% for image in product.currentImages %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.otherImages %}
        {% endfor %}
        {% for label in product.labels %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
        {% endfor %}
        {% for upsell in product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.currentVariants %}
        {% endfor %}
        {% for variant in product.variants %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.videos %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
        {% endif %}
        {% if product.brand %}
        {% endif %}
        {% if product.imageForEnumValueId %}
        {% endif %}
        {% if product.image %}
        {% endif %}
        {% if product.successor %}
        {% endif %}
        {% if product.seo %}
        {% endif %}
        {% if product.supplier %}
        {% endif %}
        {% if product.unit %}
        {% endif %}
        {% if product.variant %}
        {% endif %}
        {% if product.warranty %}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ gift.item.product.rating.count }}
{% if gift.item.product.rating.voted %} ... {% endif %}
{% if gift.item.product.rating.average %}
        {{ gift.item.product.rating.average }}
{% endif %}
{% for upsell in gift.item.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ gift.item.product.url }}
{{ gift.item.product.url.absolute }}
{{ gift.item.product.url.path }}
{% for variantChoiceStep in gift.item.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
        {% endif %}
        {% if variantChoiceStep.info %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
        {% endif %}
{% endfor %}
{% for variant in gift.item.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in gift.item.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in gift.item.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{{ gift.item.product.variantType.id }}
{{ gift.item.product.variantType.name }}
{% for video in gift.item.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ gift.item.product.trackingIds }}
{% if gift.item.product.currentSubName %}
        {{ gift.item.product.currentSubName }}
{% endif %}
{% if gift.item.product.nameSuffix %}
        {{ gift.item.product.nameSuffix }}
{% endif %}
{% if gift.item.product.nameSupplier %}
        {{ gift.item.product.nameSupplier }}
{% endif %}
{% if gift.item.product.text %}
        {{ gift.item.product.text }}
{% endif %}
{% if gift.item.product.attribute %}
        {{ gift.item.product.attribute.name }}
        {{ gift.item.product.attribute.valuesHtml }}
        {% for attributeValueInstance in gift.item.product.attribute.values %}
        {% endfor %}
        {% if gift.item.product.attribute.description %}
                {{ gift.item.product.attribute.description }}
        {% endif %}
        {% if gift.item.product.attribute.group %}
        {% endif %}
        {% if gift.item.product.attribute.image %}
        {% endif %}
{% endif %}
{% if gift.item.product.brand %}
        {{ gift.item.product.brand.id }}
        {{ gift.item.product.brand.name }}
        {% if gift.item.product.brand.flagImportant %} ... {% endif %}
        {% for category in gift.item.product.brand.categories %}
        {% endfor %}
        {% if gift.item.product.brand.code %}
                {{ gift.item.product.brand.code }}
        {% endif %}
        {% if gift.item.product.brand.web %}
                {{ gift.item.product.brand.web }}
        {% endif %}
        {% if gift.item.product.brand.text %}
                {{ gift.item.product.brand.text }}
        {% endif %}
        {% if gift.item.product.brand.image %}
        {% endif %}
        {% if gift.item.product.brand.seo %}
        {% endif %}
        {% if gift.item.product.brand.contentGrid %}
                {{ gift.item.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if gift.item.product.imageForEnumValueId %}
        {{ gift.item.product.imageForEnumValueId.originalHeight }}
        {{ gift.item.product.imageForEnumValueId.originalWidth }}
        {{ gift.item.product.imageForEnumValueId.url }}
        {% if gift.item.product.imageForEnumValueId.alt %}
                {{ gift.item.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if gift.item.product.imageForEnumValueId.text %}
                {{ gift.item.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if gift.item.product.image %}
        {{ gift.item.product.image.originalHeight }}
        {{ gift.item.product.image.originalWidth }}
        {{ gift.item.product.image.url }}
        {% if gift.item.product.image.alt %}
                {{ gift.item.product.image.alt }}
        {% endif %}
        {% if gift.item.product.image.text %}
                {{ gift.item.product.image.text }}
        {% endif %}
{% endif %}
{% if gift.item.product.successor %}
        {{ gift.item.product.successor.id }}
        {{ gift.item.product.successor.name }}
        {{ gift.item.product.successor.trackingId }}
        {{ gift.item.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if gift.item.product.successor.active %} ... {% endif %}
        {% if gift.item.product.successor.compared %} ... {% endif %}
        {% if gift.item.product.successor.differentVariantPrices %} ... {% endif %}
        {% if gift.item.product.successor.flagNew %} ... {% endif %}
        {% if gift.item.product.successor.flagPromo %} ... {% endif %}
        {% if gift.item.product.successor.flagSecondHand %} ... {% endif %}
        {% if gift.item.product.successor.flagSellout %} ... {% endif %}
        {% if gift.item.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if gift.item.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in gift.item.product.successor.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in gift.item.product.successor.availableUpsellGroups %}
        {% endfor %}
        {% for category in gift.item.product.successor.categories %}
        {% endfor %}
        {% for category in gift.item.product.successor.otherCategories %}
        {% endfor %}
        {% for file in gift.item.product.successor.files %}
        {% endfor %}
        {% for image in gift.item.product.successor.images %}
        {% endfor %}
        {% for image in gift.item.product.successor.imagesWithEnumValue %}
        {% endfor %}
        {% for image in gift.item.product.successor.images360 %}
        {% endfor %}
        {% for image in gift.item.product.successor.currentImages %}
        {% endfor %}
        {% for image in gift.item.product.successor.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in gift.item.product.successor.otherImages %}
        {% endfor %}
        {% for label in gift.item.product.successor.labels %}
        {% endfor %}
        {% for productEnumValue in gift.item.product.successor.enumValues %}
        {% endfor %}
        {% for product in gift.item.product.successor.packTemplateProducts %}
        {% endfor %}
        {% for upsell in gift.item.product.successor.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in gift.item.product.successor.variantChoiceSteps %}
        {% endfor %}
        {% for variant in gift.item.product.successor.currentVariants %}
        {% endfor %}
        {% for variant in gift.item.product.successor.variants %}
        {% endfor %}
        {% for variant in gift.item.product.successor.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in gift.item.product.successor.videos %}
        {% endfor %}
        {{ gift.item.product.successor.trackingIds }}
        {% if gift.item.product.successor.currentSubName %}
                {{ gift.item.product.successor.currentSubName }}
        {% endif %}
        {% if gift.item.product.successor.nameSuffix %}
                {{ gift.item.product.successor.nameSuffix }}
        {% endif %}
        {% if gift.item.product.successor.nameSupplier %}
                {{ gift.item.product.successor.nameSupplier }}
        {% endif %}
        {% if gift.item.product.successor.text %}
                {{ gift.item.product.successor.text }}
        {% endif %}
        {% if gift.item.product.successor.attribute %}
        {% endif %}
        {% if gift.item.product.successor.brand %}
        {% endif %}
        {% if gift.item.product.successor.imageForEnumValueId %}
        {% endif %}
        {% if gift.item.product.successor.image %}
        {% endif %}
        {% if gift.item.product.successor.seo %}
        {% endif %}
        {% if gift.item.product.successor.supplier %}
        {% endif %}
        {% if gift.item.product.successor.unit %}
        {% endif %}
        {% if gift.item.product.successor.variant %}
        {% endif %}
        {% if gift.item.product.successor.warranty %}
        {% endif %}
        {% if gift.item.product.successor.contentGrid %}
                {{ gift.item.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if gift.item.product.seo %}
        {% if gift.item.product.seo.description %}
                {{ gift.item.product.seo.description }}
        {% endif %}
        {% if gift.item.product.seo.keywords %}
                {{ gift.item.product.seo.keywords }}
        {% endif %}
        {% if gift.item.product.seo.title %}
                {{ gift.item.product.seo.title }}
        {% endif %}
{% endif %}
{% if gift.item.product.supplier %}
        {{ gift.item.product.supplier.id }}
        {{ gift.item.product.supplier.name }}
{% endif %}
{% if gift.item.product.unit %}
        {{ gift.item.product.unit.name }}
{% endif %}
{% if gift.item.product.variant %}
        {{ gift.item.product.variant.id }}
        {{ gift.item.product.variant.name }}
        {{ gift.item.product.variant.trackingId }}
        {% if gift.item.product.variant.active %} ... {% endif %}
        {% if gift.item.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in gift.item.product.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in gift.item.product.variant.enumValues %}
        {% endfor %}
        {% for image in gift.item.product.variant.images %}
        {% endfor %}
        {% for upsell in gift.item.product.variant.availableUpsells %}
        {% endfor %}
        {% if gift.item.product.variant.legacyRel %}
                {{ gift.item.product.variant.legacyRel }}
        {% endif %}
        {% if gift.item.product.variant.image %}
        {% endif %}
{% endif %}
{% if gift.item.product.warranty %}
        {{ gift.item.product.warranty.months }}
{% endif %}
{% if gift.item.product.contentGrid %}
        {{ gift.item.product.contentGrid }}
{% endif %}
{% for upsell in gift.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in upsell.product.categories %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
        {% endfor %}
        {% for file in upsell.product.files %}
        {% endfor %}
        {% for image in upsell.product.images %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
        {% endfor %}
        {% for label in upsell.product.labels %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in upsell.product.videos %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
        {% endif %}
        {% if upsell.product.brand %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if upsell.product.image %}
        {% endif %}
        {% if upsell.product.successor %}
        {% endif %}
        {% if upsell.product.seo %}
        {% endif %}
        {% if upsell.product.supplier %}
        {% endif %}
        {% if upsell.product.unit %}
        {% endif %}
        {% if upsell.product.variant %}
        {% endif %}
        {% if upsell.product.warranty %}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ gift.item.trackingIds }}
{{ gift.item.storageLocations }}
{% if gift.item.packageHeight %}
        {{ gift.item.packageHeight }}
{% endif %}
{% if gift.item.packageLength %}
        {{ gift.item.packageLength }}
{% endif %}
{% if gift.item.packageWeight %}
        {{ gift.item.packageWeight }}
{% endif %}
{% if gift.item.packageWidth %}
        {{ gift.item.packageWidth }}
{% endif %}
{% if gift.item.code %}
        {{ gift.item.code }}
{% endif %}
{% if gift.item.bundle %}
        {% if gift.item.bundle.multiPack %} ... {% endif %}
        {% if gift.item.bundle.price %}
                {{ gift.item.bundle.price.vatRate }}
                {% if gift.item.bundle.price.discountPercent %}
                        {{ gift.item.bundle.price.discountPercent }}
                {% endif %}
                {% if gift.item.bundle.price.discountValidTo %}
                        {{ gift.item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if gift.item.bundle.price.beforeDiscount %}
                {% endif %}
                {% if gift.item.bundle.price.discount %}
                {% endif %}
        {% endif %}
{% endif %}
{% if gift.item.cheapestDelivery %}
        {{ gift.item.cheapestDelivery.inputId }}
        {{ gift.item.cheapestDelivery.name }}
        {{ gift.item.cheapestDelivery.vatRate }}
        {% if gift.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if gift.item.cheapestDelivery.currier %} ... {% endif %}
        {% if gift.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if gift.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if gift.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if gift.item.cheapestDelivery.free %} ... {% endif %}
        {% if gift.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if gift.item.cheapestDelivery.selected %} ... {% endif %}
        {{ gift.item.cheapestDelivery.price.vatRate }}
        {% if gift.item.cheapestDelivery.price.discountPercent %}
                {{ gift.item.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if gift.item.cheapestDelivery.price.discountValidTo %}
                {{ gift.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.cheapestDelivery.price.beforeDiscount %}
        {% endif %}
        {% if gift.item.cheapestDelivery.price.discount %}
        {% endif %}
        {% if gift.item.cheapestDelivery.text %}
                {{ gift.item.cheapestDelivery.text }}
        {% endif %}
        {% if gift.item.cheapestDelivery.branch %}
                {{ gift.item.cheapestDelivery.branch.code }}
                {{ gift.item.cheapestDelivery.branch.name }}
        {% endif %}
        {% if gift.item.cheapestDelivery.carrier %}
                {{ gift.item.cheapestDelivery.carrier.code }}
                {{ gift.item.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if gift.item.cheapestDelivery.deliveryDate %}
                {{ gift.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ gift.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ gift.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if gift.item.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ gift.item.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if gift.item.cheapestDelivery.packageType %}
                {{ gift.item.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if gift.item.cheapestDelivery.image %}
                {{ gift.item.cheapestDelivery.image.originalHeight }}
                {{ gift.item.cheapestDelivery.image.originalWidth }}
                {{ gift.item.cheapestDelivery.image.url }}
                {% if gift.item.cheapestDelivery.image.alt %}
                        {{ gift.item.cheapestDelivery.image.alt }}
                {% endif %}
                {% if gift.item.cheapestDelivery.image.text %}
                        {{ gift.item.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if gift.item.freeDelivery %}
        {{ gift.item.freeDelivery.name }}
        {{ gift.item.freeDelivery.vatRate }}
        {{ gift.item.freeDelivery.payment.code }}
        {{ gift.item.freeDelivery.payment.inputId }}
        {{ gift.item.freeDelivery.payment.name }}
        {{ gift.item.freeDelivery.payment.url }}
        {{ gift.item.freeDelivery.payment.vatRate }}
        {% if gift.item.freeDelivery.payment.free %} ... {% endif %}
        {% if gift.item.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if gift.item.freeDelivery.payment.selected %} ... {% endif %}
        {% if gift.item.freeDelivery.payment.vs %}
                {{ gift.item.freeDelivery.payment.vs }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.qRCodeHTML %}
                {{ gift.item.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.text %}
                {{ gift.item.freeDelivery.payment.text }}
        {% endif %}
        {% if gift.item.freeDelivery.payment.bankAccount %}
        {% endif %}
        {% if gift.item.freeDelivery.payment.image %}
        {% endif %}
        {{ gift.item.freeDelivery.transport.inputId }}
        {{ gift.item.freeDelivery.transport.name }}
        {{ gift.item.freeDelivery.transport.vatRate }}
        {% if gift.item.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.currier %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.free %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.pickup %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.selected %} ... {% endif %}
        {% if gift.item.freeDelivery.transport.text %}
                {{ gift.item.freeDelivery.transport.text }}
        {% endif %}
        {% if gift.item.freeDelivery.transport.branch %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.carrier %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.packageType %}
        {% endif %}
        {% if gift.item.freeDelivery.transport.image %}
        {% endif %}
        {{ gift.item.freeDelivery.price.vatRate }}
        {% if gift.item.freeDelivery.price.discountPercent %}
                {{ gift.item.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if gift.item.freeDelivery.price.discountValidTo %}
                {{ gift.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.freeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if gift.item.freeDelivery.price.discount %}
        {% endif %}
        {% if gift.item.freeDelivery.id %}
                {{ gift.item.freeDelivery.id }}
        {% endif %}
        {% if gift.item.freeDelivery.freeLimit %}
                {{ gift.item.freeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if gift.item.closestFreeDelivery %}
        {{ gift.item.closestFreeDelivery.name }}
        {{ gift.item.closestFreeDelivery.vatRate }}
        {{ gift.item.closestFreeDelivery.payment.code }}
        {{ gift.item.closestFreeDelivery.payment.inputId }}
        {{ gift.item.closestFreeDelivery.payment.name }}
        {{ gift.item.closestFreeDelivery.payment.url }}
        {{ gift.item.closestFreeDelivery.payment.vatRate }}
        {% if gift.item.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.payment.selected %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.payment.vs %}
                {{ gift.item.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.qRCodeHTML %}
                {{ gift.item.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.text %}
                {{ gift.item.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.bankAccount %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.payment.image %}
        {% endif %}
        {{ gift.item.closestFreeDelivery.transport.inputId }}
        {{ gift.item.closestFreeDelivery.transport.name }}
        {{ gift.item.closestFreeDelivery.transport.vatRate }}
        {% if gift.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.selected %} ... {% endif %}
        {% if gift.item.closestFreeDelivery.transport.text %}
                {{ gift.item.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.branch %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.carrier %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.packageType %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.transport.image %}
        {% endif %}
        {{ gift.item.closestFreeDelivery.price.vatRate }}
        {% if gift.item.closestFreeDelivery.price.discountPercent %}
                {{ gift.item.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.price.discountValidTo %}
                {{ gift.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.price.discount %}
        {% endif %}
        {% if gift.item.closestFreeDelivery.id %}
                {{ gift.item.closestFreeDelivery.id }}
        {% endif %}
        {% if gift.item.closestFreeDelivery.freeLimit %}
                {{ gift.item.closestFreeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if gift.item.packageDimensions %}
        {{ gift.item.packageDimensions }}
        {{ gift.item.packageDimensions.height }}
        {{ gift.item.packageDimensions.length }}
        {{ gift.item.packageDimensions.width }}
        {{ gift.item.packageDimensions.unit }}
{% endif %}
{% if gift.item.image %}
        {{ gift.item.image.originalHeight }}
        {{ gift.item.image.originalWidth }}
        {{ gift.item.image.url }}
        {% if gift.item.image.alt %}
                {{ gift.item.image.alt }}
        {% endif %}
        {% if gift.item.image.text %}
                {{ gift.item.image.text }}
        {% endif %}
{% endif %}
{% if gift.item.price %}
        {{ gift.item.price.vatRate }}
        {{ gift.item.price.current.currency }}
        {{ gift.item.price.current.formatted }}
        {{ gift.item.price.current.value }}
        {% if gift.item.price.discountPercent %}
                {{ gift.item.price.discountPercent }}
        {% endif %}
        {% if gift.item.price.discountValidTo %}
                {{ gift.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if gift.item.price.beforeDiscount %}
                {{ gift.item.price.beforeDiscount.currency }}
                {{ gift.item.price.beforeDiscount.formatted }}
                {{ gift.item.price.beforeDiscount.value }}
        {% endif %}
        {% if gift.item.price.discount %}
                {{ gift.item.price.discount.currency }}
                {{ gift.item.price.discount.formatted }}
                {{ gift.item.price.discount.value }}
        {% endif %}
{% endif %}
{% if gift.item.url %}
        {{ gift.item.url }}
        {{ gift.item.url.absolute }}
        {{ gift.item.url.path }}
{% endif %}
{% if gift.item.variant %}
        {{ gift.item.variant.id }}
        {{ gift.item.variant.name }}
        {{ gift.item.variant.trackingId }}
        {% if gift.item.variant.active %} ... {% endif %}
        {% if gift.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in gift.item.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in gift.item.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in gift.item.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ gift.item.variant.product.id }}
        {{ gift.item.variant.product.name }}
        {{ gift.item.variant.product.trackingId }}
        {{ gift.item.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if gift.item.variant.product.active %} ... {% endif %}
        {% if gift.item.variant.product.compared %} ... {% endif %}
        {% if gift.item.variant.product.differentVariantPrices %} ... {% endif %}
        {% if gift.item.variant.product.flagNew %} ... {% endif %}
        {% if gift.item.variant.product.flagPromo %} ... {% endif %}
        {% if gift.item.variant.product.flagSecondHand %} ... {% endif %}
        {% if gift.item.variant.product.flagSellout %} ... {% endif %}
        {% if gift.item.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if gift.item.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in gift.item.variant.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in gift.item.variant.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in gift.item.variant.product.categories %}
        {% endfor %}
        {% for category in gift.item.variant.product.otherCategories %}
        {% endfor %}
        {% for file in gift.item.variant.product.files %}
        {% endfor %}
        {% for image in gift.item.variant.product.images %}
        {% endfor %}
        {% for image in gift.item.variant.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in gift.item.variant.product.images360 %}
        {% endfor %}
        {% for image in gift.item.variant.product.currentImages %}
        {% endfor %}
        {% for image in gift.item.variant.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in gift.item.variant.product.otherImages %}
        {% endfor %}
        {% for label in gift.item.variant.product.labels %}
        {% endfor %}
        {% for productEnumValue in gift.item.variant.product.enumValues %}
        {% endfor %}
        {% for product in gift.item.variant.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in gift.item.variant.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in gift.item.variant.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in gift.item.variant.product.currentVariants %}
        {% endfor %}
        {% for variant in gift.item.variant.product.variants %}
        {% endfor %}
        {% for variant in gift.item.variant.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in gift.item.variant.product.videos %}
        {% endfor %}
        {{ gift.item.variant.product.trackingIds }}
        {% if gift.item.variant.product.currentSubName %}
                {{ gift.item.variant.product.currentSubName }}
        {% endif %}
        {% if gift.item.variant.product.nameSuffix %}
                {{ gift.item.variant.product.nameSuffix }}
        {% endif %}
        {% if gift.item.variant.product.nameSupplier %}
                {{ gift.item.variant.product.nameSupplier }}
        {% endif %}
        {% if gift.item.variant.product.text %}
                {{ gift.item.variant.product.text }}
        {% endif %}
        {% if gift.item.variant.product.attribute %}
        {% endif %}
        {% if gift.item.variant.product.brand %}
        {% endif %}
        {% if gift.item.variant.product.imageForEnumValueId %}
        {% endif %}
        {% if gift.item.variant.product.image %}
        {% endif %}
        {% if gift.item.variant.product.successor %}
        {% endif %}
        {% if gift.item.variant.product.seo %}
        {% endif %}
        {% if gift.item.variant.product.supplier %}
        {% endif %}
        {% if gift.item.variant.product.unit %}
        {% endif %}
        {% if gift.item.variant.product.warranty %}
        {% endif %}
        {% if gift.item.variant.product.contentGrid %}
                {{ gift.item.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in gift.item.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ gift.item.variant.url }}
        {{ gift.item.variant.url.absolute }}
        {{ gift.item.variant.url.path }}
        {% if gift.item.variant.legacyRel %}
                {{ gift.item.variant.legacyRel }}
        {% endif %}
        {% if gift.item.variant.image %}
                {{ gift.item.variant.image.originalHeight }}
                {{ gift.item.variant.image.originalWidth }}
                {{ gift.item.variant.image.url }}
                {% if gift.item.variant.image.alt %}
                        {{ gift.item.variant.image.alt }}
                {% endif %}
                {% if gift.item.variant.image.text %}
                        {{ gift.item.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if gift.image %}
        {{ gift.image.originalHeight }}
        {{ gift.image.originalWidth }}
        {{ gift.image.url }}
        {% if gift.image.alt %}
                {{ gift.image.alt }}
        {% endif %}
        {% if gift.image.text %}
                {{ gift.image.text }}
        {% endif %}
{% endif %}

Image

Obrázky pokud možno nikdy nevypisujeme přes <img src=, ale vždy přes pomocný tag <i:img, který rovnou řeší retina displeje a responzivitu.

Pokud obrázek neexistuje, tak se zobrazí chybový dle nastavení v administraci - zda existuje lze zjistit atributem „exists“ a případně ho na webu vůbec nevypisovat. Pokud má objekt více obrázků (například galerie), tak budou vždy všechny existovat a kontrola není potřeba.

Attributy objektu Image

Název

Typ

Popis

originalHeight

int

Výška (px) originálu fotky

originalWidth

int

Šířka (px) originálu fotky

url

string

URL obrázku podle parametrů (pouze pro background-image!)

alt

string | null

Popis obrázku nebo název související položky

text

string | null

Popis obrázku

Příklady:

{{ image.originalHeight }}
{{ image.originalWidth }}
{{ image.url }}

{% if image.alt %}
        {{ image.alt }}
{% endif %}

{% if image.text %}
        {{ image.text }}
{% endif %}

Item

Attributy objektu Item

Název

Typ

Popis

id

int

Id

name

string

Název

trackingId

string

ID používané ve feedech a měřících skriptech

digital

bool

Digitální položka?

sellable

bool

Je prodejné? (zobrazit vložení do košíku?)

service

bool

Je položka služba? (neskladová položka)

availability

Availability

Dostupnost

availableUpsellGroups

AvailableUpsellGroup[]

Dostupné skupiny upsellu

product

Product

Produkt

availableUpsells

Upsell[]

Dostupné položky pro upsell

trackingIds

array

ID používané ve feedech a měřících skriptech (produkt a varianta)

storageLocations

array

Skladové pozice

packageHeight

int | null

Výška balení (cm)

packageLength

int | null

Délka balení (cm)

packageWeight

int | null

Váha balení (g)

packageWidth

int | null

Šířka balení (cm)

code

string | null

Kód

bundle

Bundle | null

Komplet

cheapestDelivery

Delivery/Transport | null

Nejlevnější přeprava (nezohledňuje košík a osobní odběr)

freeDelivery

Delivery | null

Je dodání zdarma? (a jaké)

closestFreeDelivery

Delivery | null

Nejbližší dostupná doprava zdarma

packageDimensions

Dimensions | null

Rozměry balení

image

Image | null

Obrázek

price

Price | null

Cena položky

url

Url | null

Url produktu/varianty

variant

Variant | null

Varianta

Příklady:

{{ item.id }}
{{ item.name }}
{{ item.trackingId }}
{% if item.digital %} ... {% endif %}
{% if item.sellable %} ... {% endif %}
{% if item.service %} ... {% endif %}
{{ item.availability.availableAmount }}
{{ item.availability.availableAmountInShowroom }}
{{ item.availability.availableAmountInStockroom }}
{{ item.availability.availableAmountInStorageCenter }}
{{ item.availability.hours }}
{{ item.availability.totalAmount }}
{% if item.availability.inShowroom %} ... {% endif %}
{% if item.availability.inStock %} ... {% endif %}
{% if item.availability.preorder %} ... {% endif %}
{% if item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in item.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ deliveryOption.transport.inputId }}
        {{ deliveryOption.transport.name }}
        {{ deliveryOption.transport.vatRate }}
        {% if deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if deliveryOption.transport.currier %} ... {% endif %}
        {% if deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if deliveryOption.transport.deliveryAddressRequired %} ... {% endif %}
        {% if deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if deliveryOption.transport.free %} ... {% endif %}
        {% if deliveryOption.transport.pickup %} ... {% endif %}
        {% if deliveryOption.transport.selected %} ... {% endif %}
        {% if deliveryOption.transport.text %}
                {{ deliveryOption.transport.text }}
        {% endif %}
        {% if deliveryOption.transport.branch %}
        {% endif %}
        {% if deliveryOption.transport.carrier %}
        {% endif %}
        {% if deliveryOption.transport.deliveryDate %}
        {% endif %}
        {% if deliveryOption.transport.packageType %}
        {% endif %}
        {% if deliveryOption.transport.image %}
        {% endif %}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% if item.availability.text %}
        {{ item.availability.text }}
{% endif %}
{% if item.availability.dateExpected %}
        {{ item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if item.availability.deliveryOption %}
        {{ item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {{ item.availability.deliveryOption.transport.inputId }}
        {{ item.availability.deliveryOption.transport.name }}
        {{ item.availability.deliveryOption.transport.vatRate }}
        {% if item.availability.deliveryOption.transport.branchRequired %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.currier %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.dateGuaranteed %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.deliveryAddressRequired %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.deliveryToAddress %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.free %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.pickup %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.selected %} ... {% endif %}
        {% if item.availability.deliveryOption.transport.text %}
                {{ item.availability.deliveryOption.transport.text }}
        {% endif %}
        {% if item.availability.deliveryOption.transport.branch %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.carrier %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.deliveryDate %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.packageType %}
        {% endif %}
        {% if item.availability.deliveryOption.transport.image %}
        {% endif %}
        {% if item.availability.deliveryOption.timeDelivered %}
                {{ item.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}

{% for availableUpsellGroup in item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ item.product.id }}
{{ item.product.name }}
{{ item.product.trackingId }}
{{ item.product.dateCreated|date('d. m. Y H:i') }}
{% if item.product.active %} ... {% endif %}
{% if item.product.compared %} ... {% endif %}
{% if item.product.differentVariantPrices %} ... {% endif %}
{% if item.product.flagNew %} ... {% endif %}
{% if item.product.flagPromo %} ... {% endif %}
{% if item.product.flagSecondHand %} ... {% endif %}
{% if item.product.flagSellout %} ... {% endif %}
{% if item.product.otherDiscountApplicable %} ... {% endif %}
{% if item.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in item.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in item.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ item.product.category.id }}
{{ item.product.category.productCount }}
{{ item.product.category.productInStockCount }}
{{ item.product.category.totalStockQuantity }}
{{ item.product.category.headline }}
{{ item.product.category.menuName }}
{{ item.product.category.name }}
{% if item.product.category.flagErotic %} ... {% endif %}
{% if item.product.category.flagImportant %} ... {% endif %}
{% if item.product.category.noFollow %} ... {% endif %}
{% for category in item.product.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ item.product.category.url }}
{{ item.product.category.url.absolute }}
{{ item.product.category.url.path }}
{{ item.product.category.variantType.id }}
{{ item.product.category.variantType.name }}
{% for video in item.product.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ item.product.category.pathIds }}
{{ item.product.category.pathNames }}
{{ item.product.category.templateAttribute }}
{% if item.product.category.subHeadline %}
        {{ item.product.category.subHeadline }}
{% endif %}
{% if item.product.category.text %}
        {{ item.product.category.text }}
{% endif %}
{% if item.product.category.parent %}
        {{ item.product.category.parent.id }}
        {{ item.product.category.parent.productCount }}
        {{ item.product.category.parent.productInStockCount }}
        {{ item.product.category.parent.totalStockQuantity }}
        {{ item.product.category.parent.headline }}
        {{ item.product.category.parent.menuName }}
        {{ item.product.category.parent.name }}
        {% if item.product.category.parent.flagErotic %} ... {% endif %}
        {% if item.product.category.parent.flagImportant %} ... {% endif %}
        {% if item.product.category.parent.noFollow %} ... {% endif %}
        {% for category in item.product.category.parent.subcategories %}
        {% endfor %}
        {% for video in item.product.category.parent.videos %}
        {% endfor %}
        {{ item.product.category.parent.pathIds }}
        {{ item.product.category.parent.pathNames }}
        {{ item.product.category.parent.templateAttribute }}
        {% if item.product.category.parent.subHeadline %}
                {{ item.product.category.parent.subHeadline }}
        {% endif %}
        {% if item.product.category.parent.text %}
                {{ item.product.category.parent.text }}
        {% endif %}
        {% if item.product.category.parent.image %}
        {% endif %}
        {% if item.product.category.parent.contentGrid %}
                {{ item.product.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if item.product.category.image %}
        {{ item.product.category.image.originalHeight }}
        {{ item.product.category.image.originalWidth }}
        {{ item.product.category.image.url }}
        {% if item.product.category.image.alt %}
                {{ item.product.category.image.alt }}
        {% endif %}
        {% if item.product.category.image.text %}
                {{ item.product.category.image.text }}
        {% endif %}
{% endif %}
{% if item.product.category.contentGrid %}
        {{ item.product.category.contentGrid }}
{% endif %}
{% for category in item.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in item.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in item.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in item.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in item.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ item.product.item.id }}
{{ item.product.item.name }}
{{ item.product.item.trackingId }}
{% if item.product.item.digital %} ... {% endif %}
{% if item.product.item.sellable %} ... {% endif %}
{% if item.product.item.service %} ... {% endif %}
{{ item.product.item.availability.availableAmount }}
{{ item.product.item.availability.availableAmountInShowroom }}
{{ item.product.item.availability.availableAmountInStockroom }}
{{ item.product.item.availability.availableAmountInStorageCenter }}
{{ item.product.item.availability.hours }}
{{ item.product.item.availability.totalAmount }}
{% if item.product.item.availability.inShowroom %} ... {% endif %}
{% if item.product.item.availability.inStock %} ... {% endif %}
{% if item.product.item.availability.preorder %} ... {% endif %}
{% if item.product.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in item.product.item.availability.deliveryOptions %}
{% endfor %}
{% if item.product.item.availability.text %}
        {{ item.product.item.availability.text }}
{% endif %}
{% if item.product.item.availability.dateExpected %}
        {{ item.product.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if item.product.item.availability.deliveryOption %}
{% endif %}
{% for availableUpsellGroup in item.product.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{% for upsell in item.product.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ item.product.item.trackingIds }}
{{ item.product.item.storageLocations }}
{% if item.product.item.packageHeight %}
        {{ item.product.item.packageHeight }}
{% endif %}
{% if item.product.item.packageLength %}
        {{ item.product.item.packageLength }}
{% endif %}
{% if item.product.item.packageWeight %}
        {{ item.product.item.packageWeight }}
{% endif %}
{% if item.product.item.packageWidth %}
        {{ item.product.item.packageWidth }}
{% endif %}
{% if item.product.item.code %}
        {{ item.product.item.code }}
{% endif %}
{% if item.product.item.bundle %}
        {% if item.product.item.bundle.multiPack %} ... {% endif %}
        {% if item.product.item.bundle.price %}
        {% endif %}
{% endif %}
{% if item.product.item.cheapestDelivery %}
        {{ item.product.item.cheapestDelivery.inputId }}
        {{ item.product.item.cheapestDelivery.name }}
        {{ item.product.item.cheapestDelivery.vatRate }}
        {% if item.product.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.currier %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.free %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.selected %} ... {% endif %}
        {% if item.product.item.cheapestDelivery.text %}
                {{ item.product.item.cheapestDelivery.text }}
        {% endif %}
        {% if item.product.item.cheapestDelivery.branch %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.carrier %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.deliveryDate %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.packageType %}
        {% endif %}
        {% if item.product.item.cheapestDelivery.image %}
        {% endif %}
{% endif %}
{% if item.product.item.freeDelivery %}
        {{ item.product.item.freeDelivery.name }}
        {{ item.product.item.freeDelivery.vatRate }}
        {% if item.product.item.freeDelivery.id %}
                {{ item.product.item.freeDelivery.id }}
        {% endif %}
        {% if item.product.item.freeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if item.product.item.closestFreeDelivery %}
        {{ item.product.item.closestFreeDelivery.name }}
        {{ item.product.item.closestFreeDelivery.vatRate }}
        {% if item.product.item.closestFreeDelivery.id %}
                {{ item.product.item.closestFreeDelivery.id }}
        {% endif %}
        {% if item.product.item.closestFreeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if item.product.item.packageDimensions %}
        {{ item.product.item.packageDimensions }}
        {{ item.product.item.packageDimensions.height }}
        {{ item.product.item.packageDimensions.length }}
        {{ item.product.item.packageDimensions.width }}
        {{ item.product.item.packageDimensions.unit }}
{% endif %}
{% if item.product.item.image %}
        {{ item.product.item.image.originalHeight }}
        {{ item.product.item.image.originalWidth }}
        {{ item.product.item.image.url }}
        {% if item.product.item.image.alt %}
                {{ item.product.item.image.alt }}
        {% endif %}
        {% if item.product.item.image.text %}
                {{ item.product.item.image.text }}
        {% endif %}
{% endif %}
{% if item.product.item.price %}
        {{ item.product.item.price.vatRate }}
        {% if item.product.item.price.discountPercent %}
                {{ item.product.item.price.discountPercent }}
        {% endif %}
        {% if item.product.item.price.discountValidTo %}
                {{ item.product.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.product.item.price.beforeDiscount %}
        {% endif %}
        {% if item.product.item.price.discount %}
        {% endif %}
{% endif %}
{% if item.product.item.url %}
        {{ item.product.item.url }}
        {{ item.product.item.url.absolute }}
        {{ item.product.item.url.path }}
{% endif %}
{% if item.product.item.variant %}
        {{ item.product.item.variant.id }}
        {{ item.product.item.variant.name }}
        {{ item.product.item.variant.trackingId }}
        {% if item.product.item.variant.active %} ... {% endif %}
        {% if item.product.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in item.product.item.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in item.product.item.variant.enumValues %}
        {% endfor %}
        {% for image in item.product.item.variant.images %}
        {% endfor %}
        {% for upsell in item.product.item.variant.availableUpsells %}
        {% endfor %}
        {% if item.product.item.variant.legacyRel %}
                {{ item.product.item.variant.legacyRel }}
        {% endif %}
        {% if item.product.item.variant.image %}
        {% endif %}
{% endif %}
{% for label in item.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
                {{ label.image.originalHeight }}
                {{ label.image.originalWidth }}
                {{ label.image.url }}
                {% if label.image.alt %}
                        {{ label.image.alt }}
                {% endif %}
                {% if label.image.text %}
                        {{ label.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for productEnumValue in item.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {{ productEnumValue.enum.id }}
        {{ productEnumValue.enum.name }}
        {% for enumValue in productEnumValue.enum.values %}
        {% endfor %}
        {% if productEnumValue.enum.text %}
                {{ productEnumValue.enum.text }}
        {% endif %}
        {% if productEnumValue.enum.meaning %}
        {% endif %}
        {{ productEnumValue.url }}
        {{ productEnumValue.url.absolute }}
        {{ productEnumValue.url.path }}
        {% for variant in productEnumValue.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
                {{ productEnumValue.image.originalHeight }}
                {{ productEnumValue.image.originalWidth }}
                {{ productEnumValue.image.url }}
                {% if productEnumValue.image.alt %}
                        {{ productEnumValue.image.alt }}
                {% endif %}
                {% if productEnumValue.image.text %}
                        {{ productEnumValue.image.text }}
                {% endif %}
        {% endif %}
        {% if productEnumValue.variantImage %}
                {{ productEnumValue.variantImage.originalHeight }}
                {{ productEnumValue.variantImage.originalWidth }}
                {{ productEnumValue.variantImage.url }}
                {% if productEnumValue.variantImage.alt %}
                        {{ productEnumValue.variantImage.alt }}
                {% endif %}
                {% if productEnumValue.variantImage.text %}
                        {{ productEnumValue.variantImage.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for product in item.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.category.id }}
        {{ product.category.productCount }}
        {{ product.category.productInStockCount }}
        {{ product.category.totalStockQuantity }}
        {{ product.category.headline }}
        {{ product.category.menuName }}
        {{ product.category.name }}
        {% if product.category.flagErotic %} ... {% endif %}
        {% if product.category.flagImportant %} ... {% endif %}
        {% if product.category.noFollow %} ... {% endif %}
        {% for category in product.category.subcategories %}
        {% endfor %}
        {% for video in product.category.videos %}
        {% endfor %}
        {{ product.category.pathIds }}
        {{ product.category.pathNames }}
        {{ product.category.templateAttribute }}
        {% if product.category.subHeadline %}
                {{ product.category.subHeadline }}
        {% endif %}
        {% if product.category.text %}
                {{ product.category.text }}
        {% endif %}
        {% if product.category.parent %}
        {% endif %}
        {% if product.category.image %}
        {% endif %}
        {% if product.category.contentGrid %}
                {{ product.category.contentGrid }}
        {% endif %}
        {% for category in product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.item.id }}
        {{ product.item.name }}
        {{ product.item.trackingId }}
        {% if product.item.digital %} ... {% endif %}
        {% if product.item.sellable %} ... {% endif %}
        {% if product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in product.item.availableUpsells %}
        {% endfor %}
        {{ product.item.trackingIds }}
        {{ product.item.storageLocations }}
        {% if product.item.packageHeight %}
                {{ product.item.packageHeight }}
        {% endif %}
        {% if product.item.packageLength %}
                {{ product.item.packageLength }}
        {% endif %}
        {% if product.item.packageWeight %}
                {{ product.item.packageWeight }}
        {% endif %}
        {% if product.item.packageWidth %}
                {{ product.item.packageWidth }}
        {% endif %}
        {% if product.item.code %}
                {{ product.item.code }}
        {% endif %}
        {% if product.item.bundle %}
        {% endif %}
        {% if product.item.cheapestDelivery %}
        {% endif %}
        {% if product.item.freeDelivery %}
        {% endif %}
        {% if product.item.closestFreeDelivery %}
        {% endif %}
        {% if product.item.packageDimensions %}
        {% endif %}
        {% if product.item.image %}
        {% endif %}
        {% if product.item.price %}
        {% endif %}
        {% if product.item.url %}
        {% endif %}
        {% if product.item.variant %}
        {% endif %}
        {% for label in product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {{ product.rating.count }}
        {% if product.rating.voted %} ... {% endif %}
        {% if product.rating.average %}
                {{ product.rating.average }}
        {% endif %}
        {% for upsell in product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.url }}
        {{ product.url.absolute }}
        {{ product.url.path }}
        {% for variantChoiceStep in product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ product.variantType.id }}
        {{ product.variantType.name }}
        {% for video in product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
                {{ product.attribute.name }}
                {{ product.attribute.valuesHtml }}
                {% for attributeValueInstance in product.attribute.values %}
                {% endfor %}
                {% if product.attribute.description %}
                        {{ product.attribute.description }}
                {% endif %}
                {% if product.attribute.group %}
                {% endif %}
                {% if product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if product.brand %}
                {{ product.brand.id }}
                {{ product.brand.name }}
                {% if product.brand.flagImportant %} ... {% endif %}
                {% for category in product.brand.categories %}
                {% endfor %}
                {% if product.brand.code %}
                        {{ product.brand.code }}
                {% endif %}
                {% if product.brand.web %}
                        {{ product.brand.web }}
                {% endif %}
                {% if product.brand.text %}
                        {{ product.brand.text }}
                {% endif %}
                {% if product.brand.image %}
                {% endif %}
                {% if product.brand.seo %}
                {% endif %}
                {% if product.brand.contentGrid %}
                        {{ product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.imageForEnumValueId %}
                {{ product.imageForEnumValueId.originalHeight }}
                {{ product.imageForEnumValueId.originalWidth }}
                {{ product.imageForEnumValueId.url }}
                {% if product.imageForEnumValueId.alt %}
                        {{ product.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.imageForEnumValueId.text %}
                        {{ product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.image %}
                {{ product.image.originalHeight }}
                {{ product.image.originalWidth }}
                {{ product.image.url }}
                {% if product.image.alt %}
                        {{ product.image.alt }}
                {% endif %}
                {% if product.image.text %}
                        {{ product.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor %}
                {{ product.successor.id }}
                {{ product.successor.name }}
                {{ product.successor.trackingId }}
                {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if product.successor.active %} ... {% endif %}
                {% if product.successor.compared %} ... {% endif %}
                {% if product.successor.differentVariantPrices %} ... {% endif %}
                {% if product.successor.flagNew %} ... {% endif %}
                {% if product.successor.flagPromo %} ... {% endif %}
                {% if product.successor.flagSecondHand %} ... {% endif %}
                {% if product.successor.flagSellout %} ... {% endif %}
                {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.successor.categories %}
                {% endfor %}
                {% for category in product.successor.otherCategories %}
                {% endfor %}
                {% for file in product.successor.files %}
                {% endfor %}
                {% for image in product.successor.images %}
                {% endfor %}
                {% for image in product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.successor.images360 %}
                {% endfor %}
                {% for image in product.successor.currentImages %}
                {% endfor %}
                {% for image in product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.successor.otherImages %}
                {% endfor %}
                {% for label in product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in product.successor.enumValues %}
                {% endfor %}
                {% for upsell in product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.successor.currentVariants %}
                {% endfor %}
                {% for variant in product.successor.variants %}
                {% endfor %}
                {% for variant in product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.successor.videos %}
                {% endfor %}
                {{ product.successor.trackingIds }}
                {% if product.successor.currentSubName %}
                        {{ product.successor.currentSubName }}
                {% endif %}
                {% if product.successor.nameSuffix %}
                        {{ product.successor.nameSuffix }}
                {% endif %}
                {% if product.successor.nameSupplier %}
                        {{ product.successor.nameSupplier }}
                {% endif %}
                {% if product.successor.text %}
                        {{ product.successor.text }}
                {% endif %}
                {% if product.successor.attribute %}
                {% endif %}
                {% if product.successor.brand %}
                {% endif %}
                {% if product.successor.imageForEnumValueId %}
                {% endif %}
                {% if product.successor.image %}
                {% endif %}
                {% if product.successor.seo %}
                {% endif %}
                {% if product.successor.supplier %}
                {% endif %}
                {% if product.successor.unit %}
                {% endif %}
                {% if product.successor.variant %}
                {% endif %}
                {% if product.successor.warranty %}
                {% endif %}
                {% if product.successor.contentGrid %}
                        {{ product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.seo %}
                {% if product.seo.description %}
                        {{ product.seo.description }}
                {% endif %}
                {% if product.seo.keywords %}
                        {{ product.seo.keywords }}
                {% endif %}
                {% if product.seo.title %}
                        {{ product.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.supplier %}
                {{ product.supplier.id }}
                {{ product.supplier.name }}
        {% endif %}
        {% if product.unit %}
                {{ product.unit.name }}
        {% endif %}
        {% if product.variant %}
                {{ product.variant.id }}
                {{ product.variant.name }}
                {{ product.variant.trackingId }}
                {% if product.variant.active %} ... {% endif %}
                {% if product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in product.variant.enumValues %}
                {% endfor %}
                {% for image in product.variant.images %}
                {% endfor %}
                {% for upsell in product.variant.availableUpsells %}
                {% endfor %}
                {% if product.variant.legacyRel %}
                        {{ product.variant.legacyRel }}
                {% endif %}
                {% if product.variant.image %}
                {% endif %}
        {% endif %}
        {% if product.warranty %}
                {{ product.warranty.months }}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ item.product.rating.count }}
{% if item.product.rating.voted %} ... {% endif %}
{% if item.product.rating.average %}
        {{ item.product.rating.average }}
{% endif %}
{% for upsell in item.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ item.product.url }}
{{ item.product.url.absolute }}
{{ item.product.url.path }}
{% for variantChoiceStep in item.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
                {{ variantChoice.inputValue }}
                {{ variantChoice.name }}
                {% if variantChoice.selected %} ... {% endif %}
                {% if variantChoice.color %}
                        {{ variantChoice.color }}
                {% endif %}
                {% if variantChoice.description %}
                        {{ variantChoice.description }}
                {% endif %}
                {% if variantChoice.availability %}
                {% endif %}
                {% if variantChoice.bundle %}
                {% endif %}
                {% if variantChoice.icon %}
                {% endif %}
                {% if variantChoice.image %}
                {% endif %}
                {% if variantChoice.price %}
                {% endif %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
                {{ variantChoiceStep.icon.originalHeight }}
                {{ variantChoiceStep.icon.originalWidth }}
                {{ variantChoiceStep.icon.url }}
                {% if variantChoiceStep.icon.alt %}
                        {{ variantChoiceStep.icon.alt }}
                {% endif %}
                {% if variantChoiceStep.icon.text %}
                        {{ variantChoiceStep.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
                {{ variantChoiceStep.infoIcon.originalHeight }}
                {{ variantChoiceStep.infoIcon.originalWidth }}
                {{ variantChoiceStep.infoIcon.url }}
                {% if variantChoiceStep.infoIcon.alt %}
                        {{ variantChoiceStep.infoIcon.alt }}
                {% endif %}
                {% if variantChoiceStep.infoIcon.text %}
                        {{ variantChoiceStep.infoIcon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.info %}
                {{ variantChoiceStep.info.id }}
                {{ variantChoiceStep.info.name }}
                {% for file in variantChoiceStep.info.files %}
                {% endfor %}
                {% for image in variantChoiceStep.info.images %}
                {% endfor %}
                {% for textPage in variantChoiceStep.info.subPages %}
                {% endfor %}
                {% for video in variantChoiceStep.info.videos %}
                {% endfor %}
                {% if variantChoiceStep.info.code %}
                        {{ variantChoiceStep.info.code }}
                {% endif %}
                {% if variantChoiceStep.info.text %}
                        {{ variantChoiceStep.info.text }}
                {% endif %}
                {% if variantChoiceStep.info.image %}
                {% endif %}
                {% if variantChoiceStep.info.contentGrid %}
                        {{ variantChoiceStep.info.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
                {{ variantChoiceStep.selectedChoice.inputValue }}
                {{ variantChoiceStep.selectedChoice.name }}
                {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                {% if variantChoiceStep.selectedChoice.color %}
                        {{ variantChoiceStep.selectedChoice.color }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.description %}
                        {{ variantChoiceStep.selectedChoice.description }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.availability %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.bundle %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.icon %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.image %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.price %}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in item.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in item.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in item.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ item.product.variantType.id }}
{{ item.product.variantType.name }}
{% for video in item.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ item.product.trackingIds }}
{% if item.product.currentSubName %}
        {{ item.product.currentSubName }}
{% endif %}
{% if item.product.nameSuffix %}
        {{ item.product.nameSuffix }}
{% endif %}
{% if item.product.nameSupplier %}
        {{ item.product.nameSupplier }}
{% endif %}
{% if item.product.text %}
        {{ item.product.text }}
{% endif %}
{% if item.product.attribute %}
        {{ item.product.attribute.name }}
        {{ item.product.attribute.valuesHtml }}
        {% for attributeValueInstance in item.product.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if item.product.attribute.description %}
                {{ item.product.attribute.description }}
        {% endif %}
        {% if item.product.attribute.group %}
                {{ item.product.attribute.group.id }}
        {% endif %}
        {% if item.product.attribute.image %}
                {{ item.product.attribute.image.originalHeight }}
                {{ item.product.attribute.image.originalWidth }}
                {{ item.product.attribute.image.url }}
                {% if item.product.attribute.image.alt %}
                        {{ item.product.attribute.image.alt }}
                {% endif %}
                {% if item.product.attribute.image.text %}
                        {{ item.product.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if item.product.brand %}
        {{ item.product.brand.id }}
        {{ item.product.brand.name }}
        {% if item.product.brand.flagImportant %} ... {% endif %}
        {% for category in item.product.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ item.product.brand.url }}
        {{ item.product.brand.url.absolute }}
        {{ item.product.brand.url.path }}
        {{ item.product.brand.categoryUrl }}
        {{ item.product.brand.categoryUrl.absolute }}
        {{ item.product.brand.categoryUrl.path }}
        {% if item.product.brand.code %}
                {{ item.product.brand.code }}
        {% endif %}
        {% if item.product.brand.web %}
                {{ item.product.brand.web }}
        {% endif %}
        {% if item.product.brand.text %}
                {{ item.product.brand.text }}
        {% endif %}
        {% if item.product.brand.image %}
                {{ item.product.brand.image.originalHeight }}
                {{ item.product.brand.image.originalWidth }}
                {{ item.product.brand.image.url }}
                {% if item.product.brand.image.alt %}
                        {{ item.product.brand.image.alt }}
                {% endif %}
                {% if item.product.brand.image.text %}
                        {{ item.product.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if item.product.brand.seo %}
                {% if item.product.brand.seo.description %}
                        {{ item.product.brand.seo.description }}
                {% endif %}
                {% if item.product.brand.seo.keywords %}
                        {{ item.product.brand.seo.keywords }}
                {% endif %}
                {% if item.product.brand.seo.title %}
                        {{ item.product.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if item.product.brand.contentGrid %}
                {{ item.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if item.product.imageForEnumValueId %}
        {{ item.product.imageForEnumValueId.originalHeight }}
        {{ item.product.imageForEnumValueId.originalWidth }}
        {{ item.product.imageForEnumValueId.url }}
        {% if item.product.imageForEnumValueId.alt %}
                {{ item.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if item.product.imageForEnumValueId.text %}
                {{ item.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if item.product.image %}
        {{ item.product.image.originalHeight }}
        {{ item.product.image.originalWidth }}
        {{ item.product.image.url }}
        {% if item.product.image.alt %}
                {{ item.product.image.alt }}
        {% endif %}
        {% if item.product.image.text %}
                {{ item.product.image.text }}
        {% endif %}
{% endif %}
{% if item.product.successor %}
        {{ item.product.successor.id }}
        {{ item.product.successor.name }}
        {{ item.product.successor.trackingId }}
        {{ item.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if item.product.successor.active %} ... {% endif %}
        {% if item.product.successor.compared %} ... {% endif %}
        {% if item.product.successor.differentVariantPrices %} ... {% endif %}
        {% if item.product.successor.flagNew %} ... {% endif %}
        {% if item.product.successor.flagPromo %} ... {% endif %}
        {% if item.product.successor.flagSecondHand %} ... {% endif %}
        {% if item.product.successor.flagSellout %} ... {% endif %}
        {% if item.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if item.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in item.product.successor.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in item.product.successor.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.category.id }}
        {{ item.product.successor.category.productCount }}
        {{ item.product.successor.category.productInStockCount }}
        {{ item.product.successor.category.totalStockQuantity }}
        {{ item.product.successor.category.headline }}
        {{ item.product.successor.category.menuName }}
        {{ item.product.successor.category.name }}
        {% if item.product.successor.category.flagErotic %} ... {% endif %}
        {% if item.product.successor.category.flagImportant %} ... {% endif %}
        {% if item.product.successor.category.noFollow %} ... {% endif %}
        {% for category in item.product.successor.category.subcategories %}
        {% endfor %}
        {% for video in item.product.successor.category.videos %}
        {% endfor %}
        {{ item.product.successor.category.pathIds }}
        {{ item.product.successor.category.pathNames }}
        {{ item.product.successor.category.templateAttribute }}
        {% if item.product.successor.category.subHeadline %}
                {{ item.product.successor.category.subHeadline }}
        {% endif %}
        {% if item.product.successor.category.text %}
                {{ item.product.successor.category.text }}
        {% endif %}
        {% if item.product.successor.category.parent %}
        {% endif %}
        {% if item.product.successor.category.image %}
        {% endif %}
        {% if item.product.successor.category.contentGrid %}
                {{ item.product.successor.category.contentGrid }}
        {% endif %}
        {% for category in item.product.successor.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in item.product.successor.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in item.product.successor.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.product.successor.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.item.id }}
        {{ item.product.successor.item.name }}
        {{ item.product.successor.item.trackingId }}
        {% if item.product.successor.item.digital %} ... {% endif %}
        {% if item.product.successor.item.sellable %} ... {% endif %}
        {% if item.product.successor.item.service %} ... {% endif %}
        {% for availableUpsellGroup in item.product.successor.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in item.product.successor.item.availableUpsells %}
        {% endfor %}
        {{ item.product.successor.item.trackingIds }}
        {{ item.product.successor.item.storageLocations }}
        {% if item.product.successor.item.packageHeight %}
                {{ item.product.successor.item.packageHeight }}
        {% endif %}
        {% if item.product.successor.item.packageLength %}
                {{ item.product.successor.item.packageLength }}
        {% endif %}
        {% if item.product.successor.item.packageWeight %}
                {{ item.product.successor.item.packageWeight }}
        {% endif %}
        {% if item.product.successor.item.packageWidth %}
                {{ item.product.successor.item.packageWidth }}
        {% endif %}
        {% if item.product.successor.item.code %}
                {{ item.product.successor.item.code }}
        {% endif %}
        {% if item.product.successor.item.bundle %}
        {% endif %}
        {% if item.product.successor.item.cheapestDelivery %}
        {% endif %}
        {% if item.product.successor.item.freeDelivery %}
        {% endif %}
        {% if item.product.successor.item.closestFreeDelivery %}
        {% endif %}
        {% if item.product.successor.item.packageDimensions %}
        {% endif %}
        {% if item.product.successor.item.image %}
        {% endif %}
        {% if item.product.successor.item.price %}
        {% endif %}
        {% if item.product.successor.item.url %}
        {% endif %}
        {% if item.product.successor.item.variant %}
        {% endif %}
        {% for label in item.product.successor.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in item.product.successor.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in item.product.successor.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.rating.count }}
        {% if item.product.successor.rating.voted %} ... {% endif %}
        {% if item.product.successor.rating.average %}
                {{ item.product.successor.rating.average }}
        {% endif %}
        {% for upsell in item.product.successor.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.url }}
        {{ item.product.successor.url.absolute }}
        {{ item.product.successor.url.path }}
        {% for variantChoiceStep in item.product.successor.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in item.product.successor.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.product.successor.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.product.successor.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.variantType.id }}
        {{ item.product.successor.variantType.name }}
        {% for video in item.product.successor.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ item.product.successor.trackingIds }}
        {% if item.product.successor.currentSubName %}
                {{ item.product.successor.currentSubName }}
        {% endif %}
        {% if item.product.successor.nameSuffix %}
                {{ item.product.successor.nameSuffix }}
        {% endif %}
        {% if item.product.successor.nameSupplier %}
                {{ item.product.successor.nameSupplier }}
        {% endif %}
        {% if item.product.successor.text %}
                {{ item.product.successor.text }}
        {% endif %}
        {% if item.product.successor.attribute %}
                {{ item.product.successor.attribute.name }}
                {{ item.product.successor.attribute.valuesHtml }}
                {% for attributeValueInstance in item.product.successor.attribute.values %}
                {% endfor %}
                {% if item.product.successor.attribute.description %}
                        {{ item.product.successor.attribute.description }}
                {% endif %}
                {% if item.product.successor.attribute.group %}
                {% endif %}
                {% if item.product.successor.attribute.image %}
                {% endif %}
        {% endif %}
        {% if item.product.successor.brand %}
                {{ item.product.successor.brand.id }}
                {{ item.product.successor.brand.name }}
                {% if item.product.successor.brand.flagImportant %} ... {% endif %}
                {% for category in item.product.successor.brand.categories %}
                {% endfor %}
                {% if item.product.successor.brand.code %}
                        {{ item.product.successor.brand.code }}
                {% endif %}
                {% if item.product.successor.brand.web %}
                        {{ item.product.successor.brand.web }}
                {% endif %}
                {% if item.product.successor.brand.text %}
                        {{ item.product.successor.brand.text }}
                {% endif %}
                {% if item.product.successor.brand.image %}
                {% endif %}
                {% if item.product.successor.brand.seo %}
                {% endif %}
                {% if item.product.successor.brand.contentGrid %}
                        {{ item.product.successor.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.imageForEnumValueId %}
                {{ item.product.successor.imageForEnumValueId.originalHeight }}
                {{ item.product.successor.imageForEnumValueId.originalWidth }}
                {{ item.product.successor.imageForEnumValueId.url }}
                {% if item.product.successor.imageForEnumValueId.alt %}
                        {{ item.product.successor.imageForEnumValueId.alt }}
                {% endif %}
                {% if item.product.successor.imageForEnumValueId.text %}
                        {{ item.product.successor.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.image %}
                {{ item.product.successor.image.originalHeight }}
                {{ item.product.successor.image.originalWidth }}
                {{ item.product.successor.image.url }}
                {% if item.product.successor.image.alt %}
                        {{ item.product.successor.image.alt }}
                {% endif %}
                {% if item.product.successor.image.text %}
                        {{ item.product.successor.image.text }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.seo %}
                {% if item.product.successor.seo.description %}
                        {{ item.product.successor.seo.description }}
                {% endif %}
                {% if item.product.successor.seo.keywords %}
                        {{ item.product.successor.seo.keywords }}
                {% endif %}
                {% if item.product.successor.seo.title %}
                        {{ item.product.successor.seo.title }}
                {% endif %}
        {% endif %}
        {% if item.product.successor.supplier %}
                {{ item.product.successor.supplier.id }}
                {{ item.product.successor.supplier.name }}
        {% endif %}
        {% if item.product.successor.unit %}
                {{ item.product.successor.unit.name }}
        {% endif %}
        {% if item.product.successor.variant %}
                {{ item.product.successor.variant.id }}
                {{ item.product.successor.variant.name }}
                {{ item.product.successor.variant.trackingId }}
                {% if item.product.successor.variant.active %} ... {% endif %}
                {% if item.product.successor.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in item.product.successor.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in item.product.successor.variant.enumValues %}
                {% endfor %}
                {% for image in item.product.successor.variant.images %}
                {% endfor %}
                {% for upsell in item.product.successor.variant.availableUpsells %}
                {% endfor %}
                {% if item.product.successor.variant.legacyRel %}
                        {{ item.product.successor.variant.legacyRel }}
                {% endif %}
                {% if item.product.successor.variant.image %}
                {% endif %}
        {% endif %}
        {% if item.product.successor.warranty %}
                {{ item.product.successor.warranty.months }}
        {% endif %}
        {% if item.product.successor.contentGrid %}
                {{ item.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if item.product.seo %}
        {% if item.product.seo.description %}
                {{ item.product.seo.description }}
        {% endif %}
        {% if item.product.seo.keywords %}
                {{ item.product.seo.keywords }}
        {% endif %}
        {% if item.product.seo.title %}
                {{ item.product.seo.title }}
        {% endif %}
{% endif %}
{% if item.product.supplier %}
        {{ item.product.supplier.id }}
        {{ item.product.supplier.name }}
{% endif %}
{% if item.product.unit %}
        {{ item.product.unit.name }}
{% endif %}
{% if item.product.variant %}
        {{ item.product.variant.id }}
        {{ item.product.variant.name }}
        {{ item.product.variant.trackingId }}
        {% if item.product.variant.active %} ... {% endif %}
        {% if item.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in item.product.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in item.product.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in item.product.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.product.variant.item.id }}
        {{ item.product.variant.item.name }}
        {{ item.product.variant.item.trackingId }}
        {% if item.product.variant.item.digital %} ... {% endif %}
        {% if item.product.variant.item.sellable %} ... {% endif %}
        {% if item.product.variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in item.product.variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in item.product.variant.item.availableUpsells %}
        {% endfor %}
        {{ item.product.variant.item.trackingIds }}
        {{ item.product.variant.item.storageLocations }}
        {% if item.product.variant.item.packageHeight %}
                {{ item.product.variant.item.packageHeight }}
        {% endif %}
        {% if item.product.variant.item.packageLength %}
                {{ item.product.variant.item.packageLength }}
        {% endif %}
        {% if item.product.variant.item.packageWeight %}
                {{ item.product.variant.item.packageWeight }}
        {% endif %}
        {% if item.product.variant.item.packageWidth %}
                {{ item.product.variant.item.packageWidth }}
        {% endif %}
        {% if item.product.variant.item.code %}
                {{ item.product.variant.item.code }}
        {% endif %}
        {% if item.product.variant.item.bundle %}
        {% endif %}
        {% if item.product.variant.item.cheapestDelivery %}
        {% endif %}
        {% if item.product.variant.item.freeDelivery %}
        {% endif %}
        {% if item.product.variant.item.closestFreeDelivery %}
        {% endif %}
        {% if item.product.variant.item.packageDimensions %}
        {% endif %}
        {% if item.product.variant.item.image %}
        {% endif %}
        {% if item.product.variant.item.price %}
        {% endif %}
        {% if item.product.variant.item.url %}
        {% endif %}
        {% for upsell in item.product.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.product.variant.url }}
        {{ item.product.variant.url.absolute }}
        {{ item.product.variant.url.path }}
        {% if item.product.variant.legacyRel %}
                {{ item.product.variant.legacyRel }}
        {% endif %}
        {% if item.product.variant.image %}
                {{ item.product.variant.image.originalHeight }}
                {{ item.product.variant.image.originalWidth }}
                {{ item.product.variant.image.url }}
                {% if item.product.variant.image.alt %}
                        {{ item.product.variant.image.alt }}
                {% endif %}
                {% if item.product.variant.image.text %}
                        {{ item.product.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if item.product.warranty %}
        {{ item.product.warranty.months }}
{% endif %}
{% if item.product.contentGrid %}
        {{ item.product.contentGrid }}
{% endif %}

{% for upsell in item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ item.trackingIds }}
{{ item.storageLocations }}

{% if item.packageHeight %}
        {{ item.packageHeight }}
{% endif %}

{% if item.packageLength %}
        {{ item.packageLength }}
{% endif %}

{% if item.packageWeight %}
        {{ item.packageWeight }}
{% endif %}

{% if item.packageWidth %}
        {{ item.packageWidth }}
{% endif %}

{% if item.code %}
        {{ item.code }}
{% endif %}

{% if item.bundle %}
        {% if item.bundle.multiPack %} ... {% endif %}
        {% if item.bundle.price %}
                {{ item.bundle.price.vatRate }}
                {{ item.bundle.price.current.currency }}
                {{ item.bundle.price.current.formatted }}
                {{ item.bundle.price.current.value }}
                {% if item.bundle.price.discountPercent %}
                        {{ item.bundle.price.discountPercent }}
                {% endif %}
                {% if item.bundle.price.discountValidTo %}
                        {{ item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if item.bundle.price.beforeDiscount %}
                        {{ item.bundle.price.beforeDiscount.currency }}
                        {{ item.bundle.price.beforeDiscount.formatted }}
                        {{ item.bundle.price.beforeDiscount.value }}
                {% endif %}
                {% if item.bundle.price.discount %}
                        {{ item.bundle.price.discount.currency }}
                        {{ item.bundle.price.discount.formatted }}
                        {{ item.bundle.price.discount.value }}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.cheapestDelivery %}
        {{ item.cheapestDelivery.inputId }}
        {{ item.cheapestDelivery.name }}
        {{ item.cheapestDelivery.vatRate }}
        {% if item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if item.cheapestDelivery.currier %} ... {% endif %}
        {% if item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if item.cheapestDelivery.free %} ... {% endif %}
        {% if item.cheapestDelivery.pickup %} ... {% endif %}
        {% if item.cheapestDelivery.selected %} ... {% endif %}
        {{ item.cheapestDelivery.price.vatRate }}
        {{ item.cheapestDelivery.price.current.currency }}
        {{ item.cheapestDelivery.price.current.formatted }}
        {{ item.cheapestDelivery.price.current.value }}
        {% if item.cheapestDelivery.price.discountPercent %}
                {{ item.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if item.cheapestDelivery.price.discountValidTo %}
                {{ item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.cheapestDelivery.price.beforeDiscount %}
                {{ item.cheapestDelivery.price.beforeDiscount.currency }}
                {{ item.cheapestDelivery.price.beforeDiscount.formatted }}
                {{ item.cheapestDelivery.price.beforeDiscount.value }}
        {% endif %}
        {% if item.cheapestDelivery.price.discount %}
                {{ item.cheapestDelivery.price.discount.currency }}
                {{ item.cheapestDelivery.price.discount.formatted }}
                {{ item.cheapestDelivery.price.discount.value }}
        {% endif %}
        {% if item.cheapestDelivery.text %}
                {{ item.cheapestDelivery.text }}
        {% endif %}
        {% if item.cheapestDelivery.branch %}
                {{ item.cheapestDelivery.branch.code }}
                {{ item.cheapestDelivery.branch.name }}
                {{ item.cheapestDelivery.branch.address }}
                {% if item.cheapestDelivery.branch.address.city %}
                        {{ item.cheapestDelivery.branch.address.city }}
                {% endif %}
                {% if item.cheapestDelivery.branch.address.company %}
                        {{ item.cheapestDelivery.branch.address.company }}
                {% endif %}
                {% if item.cheapestDelivery.branch.address.street %}
                        {{ item.cheapestDelivery.branch.address.street }}
                {% endif %}
                {% if item.cheapestDelivery.branch.address.country %}
                {% endif %}
        {% endif %}
        {% if item.cheapestDelivery.carrier %}
                {{ item.cheapestDelivery.carrier.code }}
                {{ item.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if item.cheapestDelivery.deliveryDate %}
                {{ item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if item.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ item.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if item.cheapestDelivery.packageType %}
                {{ item.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if item.cheapestDelivery.image %}
                {{ item.cheapestDelivery.image.originalHeight }}
                {{ item.cheapestDelivery.image.originalWidth }}
                {{ item.cheapestDelivery.image.url }}
                {% if item.cheapestDelivery.image.alt %}
                        {{ item.cheapestDelivery.image.alt }}
                {% endif %}
                {% if item.cheapestDelivery.image.text %}
                        {{ item.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if item.freeDelivery %}
        {{ item.freeDelivery.name }}
        {{ item.freeDelivery.vatRate }}
        {{ item.freeDelivery.payment.code }}
        {{ item.freeDelivery.payment.inputId }}
        {{ item.freeDelivery.payment.name }}
        {{ item.freeDelivery.payment.url }}
        {{ item.freeDelivery.payment.vatRate }}
        {% if item.freeDelivery.payment.free %} ... {% endif %}
        {% if item.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if item.freeDelivery.payment.selected %} ... {% endif %}
        {{ item.freeDelivery.payment.price.vatRate }}
        {% if item.freeDelivery.payment.price.discountPercent %}
                {{ item.freeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if item.freeDelivery.payment.price.discountValidTo %}
                {{ item.freeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.freeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if item.freeDelivery.payment.price.discount %}
        {% endif %}
        {% if item.freeDelivery.payment.vs %}
                {{ item.freeDelivery.payment.vs }}
        {% endif %}
        {% if item.freeDelivery.payment.qRCodeHTML %}
                {{ item.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if item.freeDelivery.payment.text %}
                {{ item.freeDelivery.payment.text }}
        {% endif %}
        {% if item.freeDelivery.payment.bankAccount %}
                {{ item.freeDelivery.payment.bankAccount }}
                {{ item.freeDelivery.payment.bankAccount.currency }}
                {% if item.freeDelivery.payment.bankAccount.bic %}
                        {{ item.freeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if item.freeDelivery.payment.bankAccount.iban %}
                        {{ item.freeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if item.freeDelivery.payment.bankAccount.local %}
                        {{ item.freeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if item.freeDelivery.payment.image %}
                {{ item.freeDelivery.payment.image.originalHeight }}
                {{ item.freeDelivery.payment.image.originalWidth }}
                {{ item.freeDelivery.payment.image.url }}
                {% if item.freeDelivery.payment.image.alt %}
                        {{ item.freeDelivery.payment.image.alt }}
                {% endif %}
                {% if item.freeDelivery.payment.image.text %}
                        {{ item.freeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ item.freeDelivery.transport.inputId }}
        {{ item.freeDelivery.transport.name }}
        {{ item.freeDelivery.transport.vatRate }}
        {% if item.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if item.freeDelivery.transport.currier %} ... {% endif %}
        {% if item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if item.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if item.freeDelivery.transport.free %} ... {% endif %}
        {% if item.freeDelivery.transport.pickup %} ... {% endif %}
        {% if item.freeDelivery.transport.selected %} ... {% endif %}
        {{ item.freeDelivery.transport.price.vatRate }}
        {% if item.freeDelivery.transport.price.discountPercent %}
                {{ item.freeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if item.freeDelivery.transport.price.discountValidTo %}
                {{ item.freeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.freeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if item.freeDelivery.transport.price.discount %}
        {% endif %}
        {% if item.freeDelivery.transport.text %}
                {{ item.freeDelivery.transport.text }}
        {% endif %}
        {% if item.freeDelivery.transport.branch %}
                {{ item.freeDelivery.transport.branch.code }}
                {{ item.freeDelivery.transport.branch.name }}
        {% endif %}
        {% if item.freeDelivery.transport.carrier %}
                {{ item.freeDelivery.transport.carrier.code }}
                {{ item.freeDelivery.transport.carrier.name }}
        {% endif %}
        {% if item.freeDelivery.transport.deliveryDate %}
                {{ item.freeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ item.freeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ item.freeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if item.freeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ item.freeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if item.freeDelivery.transport.packageType %}
                {{ item.freeDelivery.transport.packageType.code }}
        {% endif %}
        {% if item.freeDelivery.transport.image %}
                {{ item.freeDelivery.transport.image.originalHeight }}
                {{ item.freeDelivery.transport.image.originalWidth }}
                {{ item.freeDelivery.transport.image.url }}
                {% if item.freeDelivery.transport.image.alt %}
                        {{ item.freeDelivery.transport.image.alt }}
                {% endif %}
                {% if item.freeDelivery.transport.image.text %}
                        {{ item.freeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ item.freeDelivery.price.vatRate }}
        {{ item.freeDelivery.price.current.currency }}
        {{ item.freeDelivery.price.current.formatted }}
        {{ item.freeDelivery.price.current.value }}
        {% if item.freeDelivery.price.discountPercent %}
                {{ item.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if item.freeDelivery.price.discountValidTo %}
                {{ item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.freeDelivery.price.beforeDiscount %}
                {{ item.freeDelivery.price.beforeDiscount.currency }}
                {{ item.freeDelivery.price.beforeDiscount.formatted }}
                {{ item.freeDelivery.price.beforeDiscount.value }}
        {% endif %}
        {% if item.freeDelivery.price.discount %}
                {{ item.freeDelivery.price.discount.currency }}
                {{ item.freeDelivery.price.discount.formatted }}
                {{ item.freeDelivery.price.discount.value }}
        {% endif %}
        {% if item.freeDelivery.id %}
                {{ item.freeDelivery.id }}
        {% endif %}
        {% if item.freeDelivery.freeLimit %}
                {{ item.freeDelivery.freeLimit.percent }}
                {{ item.freeDelivery.freeLimit.total.currency }}
                {{ item.freeDelivery.freeLimit.total.formatted }}
                {{ item.freeDelivery.freeLimit.total.value }}
                {{ item.freeDelivery.freeLimit.remains.currency }}
                {{ item.freeDelivery.freeLimit.remains.formatted }}
                {{ item.freeDelivery.freeLimit.remains.value }}
        {% endif %}
{% endif %}

{% if item.closestFreeDelivery %}
        {{ item.closestFreeDelivery.name }}
        {{ item.closestFreeDelivery.vatRate }}
        {{ item.closestFreeDelivery.payment.code }}
        {{ item.closestFreeDelivery.payment.inputId }}
        {{ item.closestFreeDelivery.payment.name }}
        {{ item.closestFreeDelivery.payment.url }}
        {{ item.closestFreeDelivery.payment.vatRate }}
        {% if item.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if item.closestFreeDelivery.payment.selected %} ... {% endif %}
        {{ item.closestFreeDelivery.payment.price.vatRate }}
        {% if item.closestFreeDelivery.payment.price.discountPercent %}
                {{ item.closestFreeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.price.discountValidTo %}
                {{ item.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if item.closestFreeDelivery.payment.price.discount %}
        {% endif %}
        {% if item.closestFreeDelivery.payment.vs %}
                {{ item.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.qRCodeHTML %}
                {{ item.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.text %}
                {{ item.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if item.closestFreeDelivery.payment.bankAccount %}
                {{ item.closestFreeDelivery.payment.bankAccount }}
                {{ item.closestFreeDelivery.payment.bankAccount.currency }}
                {% if item.closestFreeDelivery.payment.bankAccount.bic %}
                        {{ item.closestFreeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if item.closestFreeDelivery.payment.bankAccount.iban %}
                        {{ item.closestFreeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if item.closestFreeDelivery.payment.bankAccount.local %}
                        {{ item.closestFreeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if item.closestFreeDelivery.payment.image %}
                {{ item.closestFreeDelivery.payment.image.originalHeight }}
                {{ item.closestFreeDelivery.payment.image.originalWidth }}
                {{ item.closestFreeDelivery.payment.image.url }}
                {% if item.closestFreeDelivery.payment.image.alt %}
                        {{ item.closestFreeDelivery.payment.image.alt }}
                {% endif %}
                {% if item.closestFreeDelivery.payment.image.text %}
                        {{ item.closestFreeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ item.closestFreeDelivery.transport.inputId }}
        {{ item.closestFreeDelivery.transport.name }}
        {{ item.closestFreeDelivery.transport.vatRate }}
        {% if item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if item.closestFreeDelivery.transport.selected %} ... {% endif %}
        {{ item.closestFreeDelivery.transport.price.vatRate }}
        {% if item.closestFreeDelivery.transport.price.discountPercent %}
                {{ item.closestFreeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.price.discountValidTo %}
                {{ item.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if item.closestFreeDelivery.transport.price.discount %}
        {% endif %}
        {% if item.closestFreeDelivery.transport.text %}
                {{ item.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.branch %}
                {{ item.closestFreeDelivery.transport.branch.code }}
                {{ item.closestFreeDelivery.transport.branch.name }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.carrier %}
                {{ item.closestFreeDelivery.transport.carrier.code }}
                {{ item.closestFreeDelivery.transport.carrier.name }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.deliveryDate %}
                {{ item.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ item.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ item.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if item.closestFreeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ item.closestFreeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if item.closestFreeDelivery.transport.packageType %}
                {{ item.closestFreeDelivery.transport.packageType.code }}
        {% endif %}
        {% if item.closestFreeDelivery.transport.image %}
                {{ item.closestFreeDelivery.transport.image.originalHeight }}
                {{ item.closestFreeDelivery.transport.image.originalWidth }}
                {{ item.closestFreeDelivery.transport.image.url }}
                {% if item.closestFreeDelivery.transport.image.alt %}
                        {{ item.closestFreeDelivery.transport.image.alt }}
                {% endif %}
                {% if item.closestFreeDelivery.transport.image.text %}
                        {{ item.closestFreeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ item.closestFreeDelivery.price.vatRate }}
        {{ item.closestFreeDelivery.price.current.currency }}
        {{ item.closestFreeDelivery.price.current.formatted }}
        {{ item.closestFreeDelivery.price.current.value }}
        {% if item.closestFreeDelivery.price.discountPercent %}
                {{ item.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if item.closestFreeDelivery.price.discountValidTo %}
                {{ item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.closestFreeDelivery.price.beforeDiscount %}
                {{ item.closestFreeDelivery.price.beforeDiscount.currency }}
                {{ item.closestFreeDelivery.price.beforeDiscount.formatted }}
                {{ item.closestFreeDelivery.price.beforeDiscount.value }}
        {% endif %}
        {% if item.closestFreeDelivery.price.discount %}
                {{ item.closestFreeDelivery.price.discount.currency }}
                {{ item.closestFreeDelivery.price.discount.formatted }}
                {{ item.closestFreeDelivery.price.discount.value }}
        {% endif %}
        {% if item.closestFreeDelivery.id %}
                {{ item.closestFreeDelivery.id }}
        {% endif %}
        {% if item.closestFreeDelivery.freeLimit %}
                {{ item.closestFreeDelivery.freeLimit.percent }}
                {{ item.closestFreeDelivery.freeLimit.total.currency }}
                {{ item.closestFreeDelivery.freeLimit.total.formatted }}
                {{ item.closestFreeDelivery.freeLimit.total.value }}
                {{ item.closestFreeDelivery.freeLimit.remains.currency }}
                {{ item.closestFreeDelivery.freeLimit.remains.formatted }}
                {{ item.closestFreeDelivery.freeLimit.remains.value }}
        {% endif %}
{% endif %}

{% if item.packageDimensions %}
        {{ item.packageDimensions }}
        {{ item.packageDimensions.height }}
        {{ item.packageDimensions.length }}
        {{ item.packageDimensions.width }}
        {{ item.packageDimensions.unit }}
{% endif %}

{% if item.image %}
        {{ item.image.originalHeight }}
        {{ item.image.originalWidth }}
        {{ item.image.url }}
        {% if item.image.alt %}
                {{ item.image.alt }}
        {% endif %}
        {% if item.image.text %}
                {{ item.image.text }}
        {% endif %}
{% endif %}

{% if item.price %}
        {{ item.price.vatRate }}
        {{ item.price.current.currency }}
        {{ item.price.current.formatted }}
        {{ item.price.current.value }}
        {% if item.price.discountPercent %}
                {{ item.price.discountPercent }}
        {% endif %}
        {% if item.price.discountValidTo %}
                {{ item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.price.beforeDiscount %}
                {{ item.price.beforeDiscount.currency }}
                {{ item.price.beforeDiscount.formatted }}
                {{ item.price.beforeDiscount.value }}
        {% endif %}
        {% if item.price.discount %}
                {{ item.price.discount.currency }}
                {{ item.price.discount.formatted }}
                {{ item.price.discount.value }}
        {% endif %}
{% endif %}

{% if item.url %}
        {{ item.url }}
        {{ item.url.absolute }}
        {{ item.url.path }}
{% endif %}

{% if item.variant %}
        {{ item.variant.id }}
        {{ item.variant.name }}
        {{ item.variant.trackingId }}
        {% if item.variant.active %} ... {% endif %}
        {% if item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in item.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in item.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.variant.item.id }}
        {{ item.variant.item.name }}
        {{ item.variant.item.trackingId }}
        {% if item.variant.item.digital %} ... {% endif %}
        {% if item.variant.item.sellable %} ... {% endif %}
        {% if item.variant.item.service %} ... {% endif %}
        {{ item.variant.item.availability.availableAmount }}
        {{ item.variant.item.availability.availableAmountInShowroom }}
        {{ item.variant.item.availability.availableAmountInStockroom }}
        {{ item.variant.item.availability.availableAmountInStorageCenter }}
        {{ item.variant.item.availability.hours }}
        {{ item.variant.item.availability.totalAmount }}
        {% if item.variant.item.availability.inShowroom %} ... {% endif %}
        {% if item.variant.item.availability.inStock %} ... {% endif %}
        {% if item.variant.item.availability.preorder %} ... {% endif %}
        {% if item.variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in item.variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if item.variant.item.availability.text %}
                {{ item.variant.item.availability.text }}
        {% endif %}
        {% if item.variant.item.availability.dateExpected %}
                {{ item.variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if item.variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in item.variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ item.variant.item.product.id }}
        {{ item.variant.item.product.name }}
        {{ item.variant.item.product.trackingId }}
        {{ item.variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if item.variant.item.product.active %} ... {% endif %}
        {% if item.variant.item.product.compared %} ... {% endif %}
        {% if item.variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if item.variant.item.product.flagNew %} ... {% endif %}
        {% if item.variant.item.product.flagPromo %} ... {% endif %}
        {% if item.variant.item.product.flagSecondHand %} ... {% endif %}
        {% if item.variant.item.product.flagSellout %} ... {% endif %}
        {% if item.variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if item.variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in item.variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in item.variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in item.variant.item.product.categories %}
        {% endfor %}
        {% for category in item.variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in item.variant.item.product.files %}
        {% endfor %}
        {% for image in item.variant.item.product.images %}
        {% endfor %}
        {% for image in item.variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in item.variant.item.product.images360 %}
        {% endfor %}
        {% for image in item.variant.item.product.currentImages %}
        {% endfor %}
        {% for image in item.variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in item.variant.item.product.otherImages %}
        {% endfor %}
        {% for label in item.variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in item.variant.item.product.enumValues %}
        {% endfor %}
        {% for product in item.variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in item.variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in item.variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in item.variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in item.variant.item.product.variants %}
        {% endfor %}
        {% for variant in item.variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in item.variant.item.product.videos %}
        {% endfor %}
        {{ item.variant.item.product.trackingIds }}
        {% if item.variant.item.product.currentSubName %}
                {{ item.variant.item.product.currentSubName }}
        {% endif %}
        {% if item.variant.item.product.nameSuffix %}
                {{ item.variant.item.product.nameSuffix }}
        {% endif %}
        {% if item.variant.item.product.nameSupplier %}
                {{ item.variant.item.product.nameSupplier }}
        {% endif %}
        {% if item.variant.item.product.text %}
                {{ item.variant.item.product.text }}
        {% endif %}
        {% if item.variant.item.product.attribute %}
        {% endif %}
        {% if item.variant.item.product.brand %}
        {% endif %}
        {% if item.variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if item.variant.item.product.image %}
        {% endif %}
        {% if item.variant.item.product.successor %}
        {% endif %}
        {% if item.variant.item.product.seo %}
        {% endif %}
        {% if item.variant.item.product.supplier %}
        {% endif %}
        {% if item.variant.item.product.unit %}
        {% endif %}
        {% if item.variant.item.product.warranty %}
        {% endif %}
        {% if item.variant.item.product.contentGrid %}
                {{ item.variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in item.variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.variant.item.trackingIds }}
        {{ item.variant.item.storageLocations }}
        {% if item.variant.item.packageHeight %}
                {{ item.variant.item.packageHeight }}
        {% endif %}
        {% if item.variant.item.packageLength %}
                {{ item.variant.item.packageLength }}
        {% endif %}
        {% if item.variant.item.packageWeight %}
                {{ item.variant.item.packageWeight }}
        {% endif %}
        {% if item.variant.item.packageWidth %}
                {{ item.variant.item.packageWidth }}
        {% endif %}
        {% if item.variant.item.code %}
                {{ item.variant.item.code }}
        {% endif %}
        {% if item.variant.item.bundle %}
                {% if item.variant.item.bundle.multiPack %} ... {% endif %}
                {% if item.variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.cheapestDelivery %}
                {{ item.variant.item.cheapestDelivery.inputId }}
                {{ item.variant.item.cheapestDelivery.name }}
                {{ item.variant.item.cheapestDelivery.vatRate }}
                {% if item.variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if item.variant.item.cheapestDelivery.text %}
                        {{ item.variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if item.variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.freeDelivery %}
                {{ item.variant.item.freeDelivery.name }}
                {{ item.variant.item.freeDelivery.vatRate }}
                {% if item.variant.item.freeDelivery.id %}
                        {{ item.variant.item.freeDelivery.id }}
                {% endif %}
                {% if item.variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.closestFreeDelivery %}
                {{ item.variant.item.closestFreeDelivery.name }}
                {{ item.variant.item.closestFreeDelivery.vatRate }}
                {% if item.variant.item.closestFreeDelivery.id %}
                        {{ item.variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if item.variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.packageDimensions %}
                {{ item.variant.item.packageDimensions }}
                {{ item.variant.item.packageDimensions.height }}
                {{ item.variant.item.packageDimensions.length }}
                {{ item.variant.item.packageDimensions.width }}
                {{ item.variant.item.packageDimensions.unit }}
        {% endif %}
        {% if item.variant.item.image %}
                {{ item.variant.item.image.originalHeight }}
                {{ item.variant.item.image.originalWidth }}
                {{ item.variant.item.image.url }}
                {% if item.variant.item.image.alt %}
                        {{ item.variant.item.image.alt }}
                {% endif %}
                {% if item.variant.item.image.text %}
                        {{ item.variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if item.variant.item.price %}
                {{ item.variant.item.price.vatRate }}
                {% if item.variant.item.price.discountPercent %}
                        {{ item.variant.item.price.discountPercent }}
                {% endif %}
                {% if item.variant.item.price.discountValidTo %}
                        {{ item.variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if item.variant.item.price.beforeDiscount %}
                {% endif %}
                {% if item.variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if item.variant.item.url %}
                {{ item.variant.item.url }}
                {{ item.variant.item.url.absolute }}
                {{ item.variant.item.url.path }}
        {% endif %}
        {{ item.variant.product.id }}
        {{ item.variant.product.name }}
        {{ item.variant.product.trackingId }}
        {{ item.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if item.variant.product.active %} ... {% endif %}
        {% if item.variant.product.compared %} ... {% endif %}
        {% if item.variant.product.differentVariantPrices %} ... {% endif %}
        {% if item.variant.product.flagNew %} ... {% endif %}
        {% if item.variant.product.flagPromo %} ... {% endif %}
        {% if item.variant.product.flagSecondHand %} ... {% endif %}
        {% if item.variant.product.flagSellout %} ... {% endif %}
        {% if item.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if item.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in item.variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in item.variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.category.id }}
        {{ item.variant.product.category.productCount }}
        {{ item.variant.product.category.productInStockCount }}
        {{ item.variant.product.category.totalStockQuantity }}
        {{ item.variant.product.category.headline }}
        {{ item.variant.product.category.menuName }}
        {{ item.variant.product.category.name }}
        {% if item.variant.product.category.flagErotic %} ... {% endif %}
        {% if item.variant.product.category.flagImportant %} ... {% endif %}
        {% if item.variant.product.category.noFollow %} ... {% endif %}
        {% for category in item.variant.product.category.subcategories %}
        {% endfor %}
        {% for video in item.variant.product.category.videos %}
        {% endfor %}
        {{ item.variant.product.category.pathIds }}
        {{ item.variant.product.category.pathNames }}
        {{ item.variant.product.category.templateAttribute }}
        {% if item.variant.product.category.subHeadline %}
                {{ item.variant.product.category.subHeadline }}
        {% endif %}
        {% if item.variant.product.category.text %}
                {{ item.variant.product.category.text }}
        {% endif %}
        {% if item.variant.product.category.parent %}
        {% endif %}
        {% if item.variant.product.category.image %}
        {% endif %}
        {% if item.variant.product.category.contentGrid %}
                {{ item.variant.product.category.contentGrid }}
        {% endif %}
        {% for category in item.variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in item.variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in item.variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in item.variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.item.id }}
        {{ item.variant.product.item.name }}
        {{ item.variant.product.item.trackingId }}
        {% if item.variant.product.item.digital %} ... {% endif %}
        {% if item.variant.product.item.sellable %} ... {% endif %}
        {% if item.variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in item.variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in item.variant.product.item.availableUpsells %}
        {% endfor %}
        {{ item.variant.product.item.trackingIds }}
        {{ item.variant.product.item.storageLocations }}
        {% if item.variant.product.item.packageHeight %}
                {{ item.variant.product.item.packageHeight }}
        {% endif %}
        {% if item.variant.product.item.packageLength %}
                {{ item.variant.product.item.packageLength }}
        {% endif %}
        {% if item.variant.product.item.packageWeight %}
                {{ item.variant.product.item.packageWeight }}
        {% endif %}
        {% if item.variant.product.item.packageWidth %}
                {{ item.variant.product.item.packageWidth }}
        {% endif %}
        {% if item.variant.product.item.code %}
                {{ item.variant.product.item.code }}
        {% endif %}
        {% if item.variant.product.item.bundle %}
        {% endif %}
        {% if item.variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if item.variant.product.item.freeDelivery %}
        {% endif %}
        {% if item.variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if item.variant.product.item.packageDimensions %}
        {% endif %}
        {% if item.variant.product.item.image %}
        {% endif %}
        {% if item.variant.product.item.price %}
        {% endif %}
        {% if item.variant.product.item.url %}
        {% endif %}
        {% for label in item.variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in item.variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in item.variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.rating.count }}
        {% if item.variant.product.rating.voted %} ... {% endif %}
        {% if item.variant.product.rating.average %}
                {{ item.variant.product.rating.average }}
        {% endif %}
        {% for upsell in item.variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.url }}
        {{ item.variant.product.url.absolute }}
        {{ item.variant.product.url.path }}
        {% for variantChoiceStep in item.variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in item.variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in item.variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.variantType.id }}
        {{ item.variant.product.variantType.name }}
        {% for video in item.variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ item.variant.product.trackingIds }}
        {% if item.variant.product.currentSubName %}
                {{ item.variant.product.currentSubName }}
        {% endif %}
        {% if item.variant.product.nameSuffix %}
                {{ item.variant.product.nameSuffix }}
        {% endif %}
        {% if item.variant.product.nameSupplier %}
                {{ item.variant.product.nameSupplier }}
        {% endif %}
        {% if item.variant.product.text %}
                {{ item.variant.product.text }}
        {% endif %}
        {% if item.variant.product.attribute %}
                {{ item.variant.product.attribute.name }}
                {{ item.variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in item.variant.product.attribute.values %}
                {% endfor %}
                {% if item.variant.product.attribute.description %}
                        {{ item.variant.product.attribute.description }}
                {% endif %}
                {% if item.variant.product.attribute.group %}
                {% endif %}
                {% if item.variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if item.variant.product.brand %}
                {{ item.variant.product.brand.id }}
                {{ item.variant.product.brand.name }}
                {% if item.variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in item.variant.product.brand.categories %}
                {% endfor %}
                {% if item.variant.product.brand.code %}
                        {{ item.variant.product.brand.code }}
                {% endif %}
                {% if item.variant.product.brand.web %}
                        {{ item.variant.product.brand.web }}
                {% endif %}
                {% if item.variant.product.brand.text %}
                        {{ item.variant.product.brand.text }}
                {% endif %}
                {% if item.variant.product.brand.image %}
                {% endif %}
                {% if item.variant.product.brand.seo %}
                {% endif %}
                {% if item.variant.product.brand.contentGrid %}
                        {{ item.variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.imageForEnumValueId %}
                {{ item.variant.product.imageForEnumValueId.originalHeight }}
                {{ item.variant.product.imageForEnumValueId.originalWidth }}
                {{ item.variant.product.imageForEnumValueId.url }}
                {% if item.variant.product.imageForEnumValueId.alt %}
                        {{ item.variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if item.variant.product.imageForEnumValueId.text %}
                        {{ item.variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.image %}
                {{ item.variant.product.image.originalHeight }}
                {{ item.variant.product.image.originalWidth }}
                {{ item.variant.product.image.url }}
                {% if item.variant.product.image.alt %}
                        {{ item.variant.product.image.alt }}
                {% endif %}
                {% if item.variant.product.image.text %}
                        {{ item.variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.successor %}
                {{ item.variant.product.successor.id }}
                {{ item.variant.product.successor.name }}
                {{ item.variant.product.successor.trackingId }}
                {{ item.variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if item.variant.product.successor.active %} ... {% endif %}
                {% if item.variant.product.successor.compared %} ... {% endif %}
                {% if item.variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if item.variant.product.successor.flagNew %} ... {% endif %}
                {% if item.variant.product.successor.flagPromo %} ... {% endif %}
                {% if item.variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if item.variant.product.successor.flagSellout %} ... {% endif %}
                {% if item.variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if item.variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in item.variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in item.variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in item.variant.product.successor.categories %}
                {% endfor %}
                {% for category in item.variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in item.variant.product.successor.files %}
                {% endfor %}
                {% for image in item.variant.product.successor.images %}
                {% endfor %}
                {% for image in item.variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in item.variant.product.successor.images360 %}
                {% endfor %}
                {% for image in item.variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in item.variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in item.variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in item.variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in item.variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in item.variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in item.variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in item.variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in item.variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in item.variant.product.successor.variants %}
                {% endfor %}
                {% for variant in item.variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in item.variant.product.successor.videos %}
                {% endfor %}
                {{ item.variant.product.successor.trackingIds }}
                {% if item.variant.product.successor.currentSubName %}
                        {{ item.variant.product.successor.currentSubName }}
                {% endif %}
                {% if item.variant.product.successor.nameSuffix %}
                        {{ item.variant.product.successor.nameSuffix }}
                {% endif %}
                {% if item.variant.product.successor.nameSupplier %}
                        {{ item.variant.product.successor.nameSupplier }}
                {% endif %}
                {% if item.variant.product.successor.text %}
                        {{ item.variant.product.successor.text }}
                {% endif %}
                {% if item.variant.product.successor.attribute %}
                {% endif %}
                {% if item.variant.product.successor.brand %}
                {% endif %}
                {% if item.variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if item.variant.product.successor.image %}
                {% endif %}
                {% if item.variant.product.successor.seo %}
                {% endif %}
                {% if item.variant.product.successor.supplier %}
                {% endif %}
                {% if item.variant.product.successor.unit %}
                {% endif %}
                {% if item.variant.product.successor.warranty %}
                {% endif %}
                {% if item.variant.product.successor.contentGrid %}
                        {{ item.variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.seo %}
                {% if item.variant.product.seo.description %}
                        {{ item.variant.product.seo.description }}
                {% endif %}
                {% if item.variant.product.seo.keywords %}
                        {{ item.variant.product.seo.keywords }}
                {% endif %}
                {% if item.variant.product.seo.title %}
                        {{ item.variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if item.variant.product.supplier %}
                {{ item.variant.product.supplier.id }}
                {{ item.variant.product.supplier.name }}
        {% endif %}
        {% if item.variant.product.unit %}
                {{ item.variant.product.unit.name }}
        {% endif %}
        {% if item.variant.product.warranty %}
                {{ item.variant.product.warranty.months }}
        {% endif %}
        {% if item.variant.product.contentGrid %}
                {{ item.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in item.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ item.variant.url }}
        {{ item.variant.url.absolute }}
        {{ item.variant.url.path }}
        {% if item.variant.legacyRel %}
                {{ item.variant.legacyRel }}
        {% endif %}
        {% if item.variant.image %}
                {{ item.variant.image.originalHeight }}
                {{ item.variant.image.originalWidth }}
                {{ item.variant.image.url }}
                {% if item.variant.image.alt %}
                        {{ item.variant.image.alt }}
                {% endif %}
                {% if item.variant.image.text %}
                        {{ item.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

Label

Attributy objektu Label

Název

Typ

Popis

id

int

Id

name

string

Název

code

string | null

Kód pro identifikaci v šabloně

colorCode

string | null

Hexa kód barvy

image

Image | null

Obrázek

Příklady:

{{ label.id }}
{{ label.name }}

{% if label.code %}
        {{ label.code }}
{% endif %}

{% if label.colorCode %}
        {{ label.colorCode }}
{% endif %}

{% if label.image %}
        {{ label.image.originalHeight }}
        {{ label.image.originalWidth }}
        {{ label.image.url }}
        {% if label.image.alt %}
                {{ label.image.alt }}
        {% endif %}
        {% if label.image.text %}
                {{ label.image.text }}
        {% endif %}
{% endif %}

LanguageUrl

Attributy objektu LanguageUrl

Název

Typ

Popis

url

string

Cílová URL

shop

Shop

Eshop

hreflang

string | null

Locale pro hreflang atribut, pokud je k dispozici

Příklady:

{{ languageurl.url }}

{% for socialProfile in languageurl.shop.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{% if languageurl.shop.email %}
        {{ languageurl.shop.email }}
{% endif %}
{% if languageurl.shop.language %}
        {{ languageurl.shop.language }}
{% endif %}
{% if languageurl.shop.name %}
        {{ languageurl.shop.name }}
{% endif %}
{% if languageurl.shop.phone %}
        {{ languageurl.shop.phone }}
{% endif %}
{% if languageurl.shop.url %}
        {{ languageurl.shop.url }}
{% endif %}
{% if languageurl.shop.country %}
        {{ languageurl.shop.country.code }}
        {{ languageurl.shop.country.flagCircleUrl }}
        {{ languageurl.shop.country.flagUrl }}
        {{ languageurl.shop.country.name }}
        {% if languageurl.shop.country.eU %} ... {% endif %}
{% endif %}
{% if languageurl.shop.image %}
        {{ languageurl.shop.image.originalHeight }}
        {{ languageurl.shop.image.originalWidth }}
        {{ languageurl.shop.image.url }}
        {% if languageurl.shop.image.alt %}
                {{ languageurl.shop.image.alt }}
        {% endif %}
        {% if languageurl.shop.image.text %}
                {{ languageurl.shop.image.text }}
        {% endif %}
{% endif %}

{% if languageurl.hreflang %}
        {{ languageurl.hreflang }}
{% endif %}

LoyaltyLevel

Attributy objektu LoyaltyLevel

Název

Typ

Popis

id

int

Id

pointsAmount

float

Počet bodů

minimumTotalPrice

PriceValue

Minimální částka

maximumTotalPrice

PriceValue

Maximální částka

Příklady:

{{ loyaltylevel.id }}
{{ loyaltylevel.pointsAmount }}
{{ loyaltylevel.minimumTotalPrice.currency }}
{{ loyaltylevel.minimumTotalPrice.formatted }}
{{ loyaltylevel.minimumTotalPrice.value }}
{{ loyaltylevel.maximumTotalPrice.currency }}
{{ loyaltylevel.maximumTotalPrice.formatted }}
{{ loyaltylevel.maximumTotalPrice.value }}

Order

Attributy objektu Order

Název

Typ

Popis

amountOfItem

int

Celkový počet kusů položky v objednávce

catalogItemCount

int

Počet položek v objednávce

catalogItemTotalAmount

int

Celkový počet kusů v objednávce

id

int

Id

loyaltyPoints

int

Počet bodů získaných za objednávku

usableLoyaltyPoints

int

Počet bodů uplatněných na objednávku

language

string

Jazyk objednávky

vs

string

Variabilní symbol

containsItem

bool

Obsahuje položku?

erotic

bool

Obsahuje objednávka erotickou položku?

externalReviewAllowed

bool

Souhlasil zákazník s dotazníkem spokojenosti?

paid

bool

Je objednávka uhrazená?

useLoyaltyPoints

bool

Použít věrnostní body?

useLoyaltyPointsManually

bool

Aplikují se věrnostní body jen po ručním výběru použití?

accountingDocuments

AccountingDocument[]

Účetní doklady

address

Addresses

Adresy

availablePaymentMethods

Delivery/Payment[]

Dostupné způsoby platby

payments

Delivery/Payment[]

Úhrady objednávky

availableTransportMethods

Delivery/Transport[]

Dostupné způsoby dopravy

delivery

Delivery

Dodání

catalogItems

Order/Item/CatalogItem[]

Položky objednávky (produkty)

items

Order/Item/CatalogItem[] | Order/Item/DiscountItem[]

Položky objednávky (produkty, slevy)

discountItems

Order/Item/DiscountItem[]

Slevy

price

Order/Price

Celkové ceny

status

Order/Status

Stav objednávky

shop

Shop

E-shop

url

Url

URL pro sledování stavu objednávky (nebo košíku u neodeslaných)

purchasedGiftVouchers

Voucher/GiftVoucher[]

Zakoupené dárkové poukazy

vouchers

Voucher/GiftVoucher[]

Uplatněné slevové kódy nebo dárkové poukazy

code

string | null

Kód

note

string | null

Poznámka zákazníka

date

datetime | null

Datum vzniku

dateInStatus

datetime | null

Datum přesunutí do aktuálního stavu

customer

Customer | null

Registrovaný zákazník

closestFreeDelivery

Delivery | null

Nejbližší dostupná doprava zdarma

parentOrder

Order | null

Nadřazená objednávka

package

Package | null

Balík

Příklady:

{{ order.amountOfItem }}
{{ order.catalogItemCount }}
{{ order.catalogItemTotalAmount }}
{{ order.id }}
{{ order.loyaltyPoints }}
{{ order.usableLoyaltyPoints }}
{{ order.language }}
{{ order.vs }}
{% if order.containsItem %} ... {% endif %}
{% if order.erotic %} ... {% endif %}
{% if order.externalReviewAllowed %} ... {% endif %}
{% if order.paid %} ... {% endif %}
{% if order.useLoyaltyPoints %} ... {% endif %}
{% if order.useLoyaltyPointsManually %} ... {% endif %}

{% for accountingDocument in order.accountingDocuments %}
        {{ accountingDocument.code }}
        {{ accountingDocument.date|date('d. m. Y H:i') }}
        {{ accountingDocument.totalPrice.vatRate }}
        {{ accountingDocument.totalPrice.current.currency }}
        {{ accountingDocument.totalPrice.current.formatted }}
        {{ accountingDocument.totalPrice.current.value }}
        {% if accountingDocument.totalPrice.discountPercent %}
                {{ accountingDocument.totalPrice.discountPercent }}
        {% endif %}
        {% if accountingDocument.totalPrice.discountValidTo %}
                {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if accountingDocument.totalPrice.beforeDiscount %}
                {{ accountingDocument.totalPrice.beforeDiscount.currency }}
                {{ accountingDocument.totalPrice.beforeDiscount.formatted }}
                {{ accountingDocument.totalPrice.beforeDiscount.value }}
        {% endif %}
        {% if accountingDocument.totalPrice.discount %}
                {{ accountingDocument.totalPrice.discount.currency }}
                {{ accountingDocument.totalPrice.discount.formatted }}
                {{ accountingDocument.totalPrice.discount.value }}
        {% endif %}
        {{ accountingDocument.pdfUrl }}
        {{ accountingDocument.pdfUrl.absolute }}
        {{ accountingDocument.pdfUrl.path }}
{% endfor %}
{{ order.address.delivery.name }}
{% if order.address.delivery.name.first %}
        {{ order.address.delivery.name.first }}
{% endif %}
{% if order.address.delivery.name.last %}
        {{ order.address.delivery.name.last }}
{% endif %}
{% if order.address.delivery.city %}
        {{ order.address.delivery.city }}
{% endif %}
{% if order.address.delivery.company %}
        {{ order.address.delivery.company }}
{% endif %}
{% if order.address.delivery.companyId %}
        {{ order.address.delivery.companyId }}
{% endif %}
{% if order.address.delivery.email %}
        {{ order.address.delivery.email }}
{% endif %}
{% if order.address.delivery.phone %}
        {{ order.address.delivery.phone }}
{% endif %}
{% if order.address.delivery.region %}
        {{ order.address.delivery.region }}
{% endif %}
{% if order.address.delivery.street %}
        {{ order.address.delivery.street }}
{% endif %}
{% if order.address.delivery.vatId %}
        {{ order.address.delivery.vatId }}
{% endif %}
{% if order.address.delivery.zip %}
        {{ order.address.delivery.zip }}
{% endif %}
{% if order.address.delivery.country %}
        {{ order.address.delivery.country.code }}
        {{ order.address.delivery.country.flagCircleUrl }}
        {{ order.address.delivery.country.flagUrl }}
        {{ order.address.delivery.country.name }}
        {% if order.address.delivery.country.eU %} ... {% endif %}
{% endif %}
{{ order.address.invoice.name }}
{% if order.address.invoice.name.first %}
        {{ order.address.invoice.name.first }}
{% endif %}
{% if order.address.invoice.name.last %}
        {{ order.address.invoice.name.last }}
{% endif %}
{% if order.address.invoice.city %}
        {{ order.address.invoice.city }}
{% endif %}
{% if order.address.invoice.company %}
        {{ order.address.invoice.company }}
{% endif %}
{% if order.address.invoice.companyId %}
        {{ order.address.invoice.companyId }}
{% endif %}
{% if order.address.invoice.email %}
        {{ order.address.invoice.email }}
{% endif %}
{% if order.address.invoice.phone %}
        {{ order.address.invoice.phone }}
{% endif %}
{% if order.address.invoice.region %}
        {{ order.address.invoice.region }}
{% endif %}
{% if order.address.invoice.street %}
        {{ order.address.invoice.street }}
{% endif %}
{% if order.address.invoice.vatId %}
        {{ order.address.invoice.vatId }}
{% endif %}
{% if order.address.invoice.zip %}
        {{ order.address.invoice.zip }}
{% endif %}
{% if order.address.invoice.country %}
        {{ order.address.invoice.country.code }}
        {{ order.address.invoice.country.flagCircleUrl }}
        {{ order.address.invoice.country.flagUrl }}
        {{ order.address.invoice.country.name }}
        {% if order.address.invoice.country.eU %} ... {% endif %}
{% endif %}

{% for payment in order.availablePaymentMethods %}
        {{ payment.code }}
        {{ payment.inputId }}
        {{ payment.name }}
        {{ payment.url }}
        {{ payment.vatRate }}
        {% if payment.free %} ... {% endif %}
        {% if payment.inAdvance %} ... {% endif %}
        {% if payment.selected %} ... {% endif %}
        {{ payment.price.vatRate }}
        {{ payment.price.current.currency }}
        {{ payment.price.current.formatted }}
        {{ payment.price.current.value }}
        {% if payment.price.discountPercent %}
                {{ payment.price.discountPercent }}
        {% endif %}
        {% if payment.price.discountValidTo %}
                {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if payment.price.beforeDiscount %}
                {{ payment.price.beforeDiscount.currency }}
                {{ payment.price.beforeDiscount.formatted }}
                {{ payment.price.beforeDiscount.value }}
        {% endif %}
        {% if payment.price.discount %}
                {{ payment.price.discount.currency }}
                {{ payment.price.discount.formatted }}
                {{ payment.price.discount.value }}
        {% endif %}
        {% if payment.vs %}
                {{ payment.vs }}
        {% endif %}
        {% if payment.qRCodeHTML %}
                {{ payment.qRCodeHTML }}
        {% endif %}
        {% if payment.text %}
                {{ payment.text }}
        {% endif %}
        {% if payment.bankAccount %}
                {{ payment.bankAccount }}
                {{ payment.bankAccount.currency }}
                {% if payment.bankAccount.bic %}
                        {{ payment.bankAccount.bic }}
                {% endif %}
                {% if payment.bankAccount.iban %}
                        {{ payment.bankAccount.iban }}
                {% endif %}
                {% if payment.bankAccount.local %}
                        {{ payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if payment.image %}
                {{ payment.image.originalHeight }}
                {{ payment.image.originalWidth }}
                {{ payment.image.url }}
                {% if payment.image.alt %}
                        {{ payment.image.alt }}
                {% endif %}
                {% if payment.image.text %}
                        {{ payment.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for payment in order.payments %}
        {{ payment.code }}
        {{ payment.inputId }}
        {{ payment.name }}
        {{ payment.url }}
        {{ payment.vatRate }}
        {% if payment.free %} ... {% endif %}
        {% if payment.inAdvance %} ... {% endif %}
        {% if payment.selected %} ... {% endif %}
        {{ payment.price.vatRate }}
        {{ payment.price.current.currency }}
        {{ payment.price.current.formatted }}
        {{ payment.price.current.value }}
        {% if payment.price.discountPercent %}
                {{ payment.price.discountPercent }}
        {% endif %}
        {% if payment.price.discountValidTo %}
                {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if payment.price.beforeDiscount %}
                {{ payment.price.beforeDiscount.currency }}
                {{ payment.price.beforeDiscount.formatted }}
                {{ payment.price.beforeDiscount.value }}
        {% endif %}
        {% if payment.price.discount %}
                {{ payment.price.discount.currency }}
                {{ payment.price.discount.formatted }}
                {{ payment.price.discount.value }}
        {% endif %}
        {% if payment.vs %}
                {{ payment.vs }}
        {% endif %}
        {% if payment.qRCodeHTML %}
                {{ payment.qRCodeHTML }}
        {% endif %}
        {% if payment.text %}
                {{ payment.text }}
        {% endif %}
        {% if payment.bankAccount %}
                {{ payment.bankAccount }}
                {{ payment.bankAccount.currency }}
                {% if payment.bankAccount.bic %}
                        {{ payment.bankAccount.bic }}
                {% endif %}
                {% if payment.bankAccount.iban %}
                        {{ payment.bankAccount.iban }}
                {% endif %}
                {% if payment.bankAccount.local %}
                        {{ payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if payment.image %}
                {{ payment.image.originalHeight }}
                {{ payment.image.originalWidth }}
                {{ payment.image.url }}
                {% if payment.image.alt %}
                        {{ payment.image.alt }}
                {% endif %}
                {% if payment.image.text %}
                        {{ payment.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for transport in order.availableTransportMethods %}
        {{ transport.inputId }}
        {{ transport.name }}
        {{ transport.vatRate }}
        {% if transport.branchRequired %} ... {% endif %}
        {% if transport.currier %} ... {% endif %}
        {% if transport.dateGuaranteed %} ... {% endif %}
        {% if transport.deliveryAddressRequired %} ... {% endif %}
        {% if transport.deliveryToAddress %} ... {% endif %}
        {% if transport.free %} ... {% endif %}
        {% if transport.pickup %} ... {% endif %}
        {% if transport.selected %} ... {% endif %}
        {{ transport.price.vatRate }}
        {{ transport.price.current.currency }}
        {{ transport.price.current.formatted }}
        {{ transport.price.current.value }}
        {% if transport.price.discountPercent %}
                {{ transport.price.discountPercent }}
        {% endif %}
        {% if transport.price.discountValidTo %}
                {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if transport.price.beforeDiscount %}
                {{ transport.price.beforeDiscount.currency }}
                {{ transport.price.beforeDiscount.formatted }}
                {{ transport.price.beforeDiscount.value }}
        {% endif %}
        {% if transport.price.discount %}
                {{ transport.price.discount.currency }}
                {{ transport.price.discount.formatted }}
                {{ transport.price.discount.value }}
        {% endif %}
        {% if transport.text %}
                {{ transport.text }}
        {% endif %}
        {% if transport.branch %}
                {{ transport.branch.code }}
                {{ transport.branch.name }}
                {{ transport.branch.address }}
                {% if transport.branch.address.city %}
                        {{ transport.branch.address.city }}
                {% endif %}
                {% if transport.branch.address.company %}
                        {{ transport.branch.address.company }}
                {% endif %}
                {% if transport.branch.address.street %}
                        {{ transport.branch.address.street }}
                {% endif %}
                {% if transport.branch.address.country %}
                {% endif %}
        {% endif %}
        {% if transport.carrier %}
                {{ transport.carrier.code }}
                {{ transport.carrier.name }}
        {% endif %}
        {% if transport.deliveryDate %}
                {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if transport.deliveryDate.timeDelivered %}
                        {{ transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if transport.packageType %}
                {{ transport.packageType.code }}
        {% endif %}
        {% if transport.image %}
                {{ transport.image.originalHeight }}
                {{ transport.image.originalWidth }}
                {{ transport.image.url }}
                {% if transport.image.alt %}
                        {{ transport.image.alt }}
                {% endif %}
                {% if transport.image.text %}
                        {{ transport.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ order.delivery.name }}
{{ order.delivery.vatRate }}
{{ order.delivery.payment.code }}
{{ order.delivery.payment.inputId }}
{{ order.delivery.payment.name }}
{{ order.delivery.payment.url }}
{{ order.delivery.payment.vatRate }}
{% if order.delivery.payment.free %} ... {% endif %}
{% if order.delivery.payment.inAdvance %} ... {% endif %}
{% if order.delivery.payment.selected %} ... {% endif %}
{{ order.delivery.payment.price.vatRate }}
{% if order.delivery.payment.price.discountPercent %}
        {{ order.delivery.payment.price.discountPercent }}
{% endif %}
{% if order.delivery.payment.price.discountValidTo %}
        {{ order.delivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if order.delivery.payment.price.beforeDiscount %}
{% endif %}
{% if order.delivery.payment.price.discount %}
{% endif %}
{% if order.delivery.payment.vs %}
        {{ order.delivery.payment.vs }}
{% endif %}
{% if order.delivery.payment.qRCodeHTML %}
        {{ order.delivery.payment.qRCodeHTML }}
{% endif %}
{% if order.delivery.payment.text %}
        {{ order.delivery.payment.text }}
{% endif %}
{% if order.delivery.payment.bankAccount %}
        {{ order.delivery.payment.bankAccount }}
        {{ order.delivery.payment.bankAccount.currency }}
        {% if order.delivery.payment.bankAccount.bic %}
                {{ order.delivery.payment.bankAccount.bic }}
        {% endif %}
        {% if order.delivery.payment.bankAccount.iban %}
                {{ order.delivery.payment.bankAccount.iban }}
        {% endif %}
        {% if order.delivery.payment.bankAccount.local %}
                {{ order.delivery.payment.bankAccount.local }}
        {% endif %}
{% endif %}
{% if order.delivery.payment.image %}
        {{ order.delivery.payment.image.originalHeight }}
        {{ order.delivery.payment.image.originalWidth }}
        {{ order.delivery.payment.image.url }}
        {% if order.delivery.payment.image.alt %}
                {{ order.delivery.payment.image.alt }}
        {% endif %}
        {% if order.delivery.payment.image.text %}
                {{ order.delivery.payment.image.text }}
        {% endif %}
{% endif %}
{{ order.delivery.transport.inputId }}
{{ order.delivery.transport.name }}
{{ order.delivery.transport.vatRate }}
{% if order.delivery.transport.branchRequired %} ... {% endif %}
{% if order.delivery.transport.currier %} ... {% endif %}
{% if order.delivery.transport.dateGuaranteed %} ... {% endif %}
{% if order.delivery.transport.deliveryAddressRequired %} ... {% endif %}
{% if order.delivery.transport.deliveryToAddress %} ... {% endif %}
{% if order.delivery.transport.free %} ... {% endif %}
{% if order.delivery.transport.pickup %} ... {% endif %}
{% if order.delivery.transport.selected %} ... {% endif %}
{{ order.delivery.transport.price.vatRate }}
{% if order.delivery.transport.price.discountPercent %}
        {{ order.delivery.transport.price.discountPercent }}
{% endif %}
{% if order.delivery.transport.price.discountValidTo %}
        {{ order.delivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if order.delivery.transport.price.beforeDiscount %}
{% endif %}
{% if order.delivery.transport.price.discount %}
{% endif %}
{% if order.delivery.transport.text %}
        {{ order.delivery.transport.text }}
{% endif %}
{% if order.delivery.transport.branch %}
        {{ order.delivery.transport.branch.code }}
        {{ order.delivery.transport.branch.name }}
{% endif %}
{% if order.delivery.transport.carrier %}
        {{ order.delivery.transport.carrier.code }}
        {{ order.delivery.transport.carrier.name }}
{% endif %}
{% if order.delivery.transport.deliveryDate %}
        {{ order.delivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
        {{ order.delivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
        {{ order.delivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
        {% if order.delivery.transport.deliveryDate.timeDelivered %}
                {{ order.delivery.transport.deliveryDate.timeDelivered }}
        {% endif %}
{% endif %}
{% if order.delivery.transport.packageType %}
        {{ order.delivery.transport.packageType.code }}
{% endif %}
{% if order.delivery.transport.image %}
        {{ order.delivery.transport.image.originalHeight }}
        {{ order.delivery.transport.image.originalWidth }}
        {{ order.delivery.transport.image.url }}
        {% if order.delivery.transport.image.alt %}
                {{ order.delivery.transport.image.alt }}
        {% endif %}
        {% if order.delivery.transport.image.text %}
                {{ order.delivery.transport.image.text }}
        {% endif %}
{% endif %}
{{ order.delivery.price.vatRate }}
{{ order.delivery.price.current.currency }}
{{ order.delivery.price.current.formatted }}
{{ order.delivery.price.current.value }}
{% if order.delivery.price.discountPercent %}
        {{ order.delivery.price.discountPercent }}
{% endif %}
{% if order.delivery.price.discountValidTo %}
        {{ order.delivery.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if order.delivery.price.beforeDiscount %}
        {{ order.delivery.price.beforeDiscount.currency }}
        {{ order.delivery.price.beforeDiscount.formatted }}
        {{ order.delivery.price.beforeDiscount.value }}
{% endif %}
{% if order.delivery.price.discount %}
        {{ order.delivery.price.discount.currency }}
        {{ order.delivery.price.discount.formatted }}
        {{ order.delivery.price.discount.value }}
{% endif %}
{% if order.delivery.id %}
        {{ order.delivery.id }}
{% endif %}
{% if order.delivery.freeLimit %}
        {{ order.delivery.freeLimit.percent }}
        {{ order.delivery.freeLimit.total.currency }}
        {{ order.delivery.freeLimit.total.formatted }}
        {{ order.delivery.freeLimit.total.value }}
        {{ order.delivery.freeLimit.remains.currency }}
        {{ order.delivery.freeLimit.remains.formatted }}
        {{ order.delivery.freeLimit.remains.value }}
{% endif %}

{% for catalogItem in order.catalogItems %}
        {{ catalogItem.amount }}
        {{ catalogItem.id }}
        {{ catalogItem.name }}
        {{ catalogItem.productName }}
        {{ catalogItem.trackingId }}
        {{ catalogItem.vatRate }}
        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
        {% if catalogItem.catalogItem %} ... {% endif %}
        {% if catalogItem.deleteAllowed %} ... {% endif %}
        {% if catalogItem.discountItem %} ... {% endif %}
        {% if catalogItem.gift %} ... {% endif %}
        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for catalogItem in catalogItem.children %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for orderItemError in catalogItem.errors %}
                {{ orderItemError.recommendedAmount }}
                {{ orderItemError.code }}
                {{ orderItemError.itemName }}
                {{ orderItemError.message }}
        {% endfor %}
        {{ catalogItem.priceTotal.vatRate }}
        {{ catalogItem.priceTotal.current.currency }}
        {{ catalogItem.priceTotal.current.formatted }}
        {{ catalogItem.priceTotal.current.value }}
        {% if catalogItem.priceTotal.discountPercent %}
                {{ catalogItem.priceTotal.discountPercent }}
        {% endif %}
        {% if catalogItem.priceTotal.discountValidTo %}
                {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.priceTotal.beforeDiscount %}
                {{ catalogItem.priceTotal.beforeDiscount.currency }}
                {{ catalogItem.priceTotal.beforeDiscount.formatted }}
                {{ catalogItem.priceTotal.beforeDiscount.value }}
        {% endif %}
        {% if catalogItem.priceTotal.discount %}
                {{ catalogItem.priceTotal.discount.currency }}
                {{ catalogItem.priceTotal.discount.formatted }}
                {{ catalogItem.priceTotal.discount.value }}
        {% endif %}
        {{ catalogItem.price.vatRate }}
        {{ catalogItem.price.current.currency }}
        {{ catalogItem.price.current.formatted }}
        {{ catalogItem.price.current.value }}
        {% if catalogItem.price.discountPercent %}
                {{ catalogItem.price.discountPercent }}
        {% endif %}
        {% if catalogItem.price.discountValidTo %}
                {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.price.beforeDiscount %}
                {{ catalogItem.price.beforeDiscount.currency }}
                {{ catalogItem.price.beforeDiscount.formatted }}
                {{ catalogItem.price.beforeDiscount.value }}
        {% endif %}
        {% if catalogItem.price.discount %}
                {{ catalogItem.price.discount.currency }}
                {{ catalogItem.price.discount.formatted }}
                {{ catalogItem.price.discount.value }}
        {% endif %}
        {% for upsell in catalogItem.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogItem.trackingIds }}
        {% if catalogItem.code %}
                {{ catalogItem.code }}
        {% endif %}
        {% if catalogItem.note %}
                {{ catalogItem.note }}
        {% endif %}
        {% if catalogItem.variantName %}
                {{ catalogItem.variantName }}
        {% endif %}
        {% if catalogItem.image %}
                {{ catalogItem.image.originalHeight }}
                {{ catalogItem.image.originalWidth }}
                {{ catalogItem.image.url }}
                {% if catalogItem.image.alt %}
                        {{ catalogItem.image.alt }}
                {% endif %}
                {% if catalogItem.image.text %}
                        {{ catalogItem.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogItem.item %}
                {{ catalogItem.item.id }}
                {{ catalogItem.item.name }}
                {{ catalogItem.item.trackingId }}
                {% if catalogItem.item.digital %} ... {% endif %}
                {% if catalogItem.item.sellable %} ... {% endif %}
                {% if catalogItem.item.service %} ... {% endif %}
                {{ catalogItem.item.availability.availableAmount }}
                {{ catalogItem.item.availability.availableAmountInShowroom }}
                {{ catalogItem.item.availability.availableAmountInStockroom }}
                {{ catalogItem.item.availability.availableAmountInStorageCenter }}
                {{ catalogItem.item.availability.hours }}
                {{ catalogItem.item.availability.totalAmount }}
                {% if catalogItem.item.availability.inShowroom %} ... {% endif %}
                {% if catalogItem.item.availability.inStock %} ... {% endif %}
                {% if catalogItem.item.availability.preorder %} ... {% endif %}
                {% if catalogItem.item.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in catalogItem.item.availability.deliveryOptions %}
                {% endfor %}
                {% if catalogItem.item.availability.text %}
                        {{ catalogItem.item.availability.text }}
                {% endif %}
                {% if catalogItem.item.availability.dateExpected %}
                        {{ catalogItem.item.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.item.availability.deliveryOption %}
                {% endif %}
                {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.product.id }}
                {{ catalogItem.item.product.name }}
                {{ catalogItem.item.product.trackingId }}
                {{ catalogItem.item.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.item.product.active %} ... {% endif %}
                {% if catalogItem.item.product.compared %} ... {% endif %}
                {% if catalogItem.item.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.item.product.flagNew %} ... {% endif %}
                {% if catalogItem.item.product.flagPromo %} ... {% endif %}
                {% if catalogItem.item.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.item.product.flagSellout %} ... {% endif %}
                {% if catalogItem.item.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.item.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.item.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.item.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.item.product.categories %}
                {% endfor %}
                {% for category in catalogItem.item.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.item.product.files %}
                {% endfor %}
                {% for image in catalogItem.item.product.images %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.item.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.item.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.item.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.item.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.item.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.item.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.item.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.item.product.videos %}
                {% endfor %}
                {{ catalogItem.item.product.trackingIds }}
                {% if catalogItem.item.product.currentSubName %}
                        {{ catalogItem.item.product.currentSubName }}
                {% endif %}
                {% if catalogItem.item.product.nameSuffix %}
                        {{ catalogItem.item.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.item.product.nameSupplier %}
                        {{ catalogItem.item.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.item.product.text %}
                        {{ catalogItem.item.product.text }}
                {% endif %}
                {% if catalogItem.item.product.attribute %}
                {% endif %}
                {% if catalogItem.item.product.brand %}
                {% endif %}
                {% if catalogItem.item.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.item.product.image %}
                {% endif %}
                {% if catalogItem.item.product.successor %}
                {% endif %}
                {% if catalogItem.item.product.seo %}
                {% endif %}
                {% if catalogItem.item.product.supplier %}
                {% endif %}
                {% if catalogItem.item.product.unit %}
                {% endif %}
                {% if catalogItem.item.product.variant %}
                {% endif %}
                {% if catalogItem.item.product.warranty %}
                {% endif %}
                {% if catalogItem.item.product.contentGrid %}
                        {{ catalogItem.item.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.item.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.trackingIds }}
                {{ catalogItem.item.storageLocations }}
                {% if catalogItem.item.packageHeight %}
                        {{ catalogItem.item.packageHeight }}
                {% endif %}
                {% if catalogItem.item.packageLength %}
                        {{ catalogItem.item.packageLength }}
                {% endif %}
                {% if catalogItem.item.packageWeight %}
                        {{ catalogItem.item.packageWeight }}
                {% endif %}
                {% if catalogItem.item.packageWidth %}
                        {{ catalogItem.item.packageWidth }}
                {% endif %}
                {% if catalogItem.item.code %}
                        {{ catalogItem.item.code }}
                {% endif %}
                {% if catalogItem.item.bundle %}
                        {% if catalogItem.item.bundle.multiPack %} ... {% endif %}
                        {% if catalogItem.item.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.cheapestDelivery %}
                        {{ catalogItem.item.cheapestDelivery.inputId }}
                        {{ catalogItem.item.cheapestDelivery.name }}
                        {{ catalogItem.item.cheapestDelivery.vatRate }}
                        {% if catalogItem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.currier %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.free %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.pickup %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.selected %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.text %}
                                {{ catalogItem.item.cheapestDelivery.text }}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.branch %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.carrier %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryDate %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.packageType %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.freeDelivery %}
                        {{ catalogItem.item.freeDelivery.name }}
                        {{ catalogItem.item.freeDelivery.vatRate }}
                        {% if catalogItem.item.freeDelivery.id %}
                                {{ catalogItem.item.freeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.closestFreeDelivery %}
                        {{ catalogItem.item.closestFreeDelivery.name }}
                        {{ catalogItem.item.closestFreeDelivery.vatRate }}
                        {% if catalogItem.item.closestFreeDelivery.id %}
                                {{ catalogItem.item.closestFreeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.packageDimensions %}
                        {{ catalogItem.item.packageDimensions }}
                        {{ catalogItem.item.packageDimensions.height }}
                        {{ catalogItem.item.packageDimensions.length }}
                        {{ catalogItem.item.packageDimensions.width }}
                        {{ catalogItem.item.packageDimensions.unit }}
                {% endif %}
                {% if catalogItem.item.image %}
                        {{ catalogItem.item.image.originalHeight }}
                        {{ catalogItem.item.image.originalWidth }}
                        {{ catalogItem.item.image.url }}
                        {% if catalogItem.item.image.alt %}
                                {{ catalogItem.item.image.alt }}
                        {% endif %}
                        {% if catalogItem.item.image.text %}
                                {{ catalogItem.item.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.price %}
                        {{ catalogItem.item.price.vatRate }}
                        {% if catalogItem.item.price.discountPercent %}
                                {{ catalogItem.item.price.discountPercent }}
                        {% endif %}
                        {% if catalogItem.item.price.discountValidTo %}
                                {{ catalogItem.item.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogItem.item.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogItem.item.price.discount %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.url %}
                        {{ catalogItem.item.url }}
                        {{ catalogItem.item.url.absolute }}
                        {{ catalogItem.item.url.path }}
                {% endif %}
                {% if catalogItem.item.variant %}
                        {{ catalogItem.item.variant.id }}
                        {{ catalogItem.item.variant.name }}
                        {{ catalogItem.item.variant.trackingId }}
                        {% if catalogItem.item.variant.active %} ... {% endif %}
                        {% if catalogItem.item.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.item.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.item.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.item.variant.legacyRel %}
                                {{ catalogItem.item.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.item.variant.image %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogItem.product %}
                {{ catalogItem.product.id }}
                {{ catalogItem.product.name }}
                {{ catalogItem.product.trackingId }}
                {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.product.active %} ... {% endif %}
                {% if catalogItem.product.compared %} ... {% endif %}
                {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.product.flagNew %} ... {% endif %}
                {% if catalogItem.product.flagPromo %} ... {% endif %}
                {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.product.flagSellout %} ... {% endif %}
                {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.category.id }}
                {{ catalogItem.product.category.productCount }}
                {{ catalogItem.product.category.productInStockCount }}
                {{ catalogItem.product.category.totalStockQuantity }}
                {{ catalogItem.product.category.headline }}
                {{ catalogItem.product.category.menuName }}
                {{ catalogItem.product.category.name }}
                {% if catalogItem.product.category.flagErotic %} ... {% endif %}
                {% if catalogItem.product.category.flagImportant %} ... {% endif %}
                {% if catalogItem.product.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.product.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.product.category.videos %}
                {% endfor %}
                {{ catalogItem.product.category.pathIds }}
                {{ catalogItem.product.category.pathNames }}
                {{ catalogItem.product.category.templateAttribute }}
                {% if catalogItem.product.category.subHeadline %}
                        {{ catalogItem.product.category.subHeadline }}
                {% endif %}
                {% if catalogItem.product.category.text %}
                        {{ catalogItem.product.category.text }}
                {% endif %}
                {% if catalogItem.product.category.parent %}
                {% endif %}
                {% if catalogItem.product.category.image %}
                {% endif %}
                {% if catalogItem.product.category.contentGrid %}
                        {{ catalogItem.product.category.contentGrid }}
                {% endif %}
                {% for category in catalogItem.product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogItem.product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogItem.product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.item.id }}
                {{ catalogItem.product.item.name }}
                {{ catalogItem.product.item.trackingId }}
                {% if catalogItem.product.item.digital %} ... {% endif %}
                {% if catalogItem.product.item.sellable %} ... {% endif %}
                {% if catalogItem.product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.product.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.product.item.trackingIds }}
                {{ catalogItem.product.item.storageLocations }}
                {% if catalogItem.product.item.packageHeight %}
                        {{ catalogItem.product.item.packageHeight }}
                {% endif %}
                {% if catalogItem.product.item.packageLength %}
                        {{ catalogItem.product.item.packageLength }}
                {% endif %}
                {% if catalogItem.product.item.packageWeight %}
                        {{ catalogItem.product.item.packageWeight }}
                {% endif %}
                {% if catalogItem.product.item.packageWidth %}
                        {{ catalogItem.product.item.packageWidth }}
                {% endif %}
                {% if catalogItem.product.item.code %}
                        {{ catalogItem.product.item.code }}
                {% endif %}
                {% if catalogItem.product.item.bundle %}
                {% endif %}
                {% if catalogItem.product.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.product.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.product.item.image %}
                {% endif %}
                {% if catalogItem.product.item.price %}
                {% endif %}
                {% if catalogItem.product.item.url %}
                {% endif %}
                {% if catalogItem.product.item.variant %}
                {% endif %}
                {% for label in catalogItem.product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogItem.product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogItem.product.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.successor %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.rating.count }}
                {% if catalogItem.product.rating.voted %} ... {% endif %}
                {% if catalogItem.product.rating.average %}
                        {{ catalogItem.product.rating.average }}
                {% endif %}
                {% for upsell in catalogItem.product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.url }}
                {{ catalogItem.product.url.absolute }}
                {{ catalogItem.product.url.path }}
                {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.variantType.id }}
                {{ catalogItem.product.variantType.name }}
                {% for video in catalogItem.product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.trackingIds }}
                {% if catalogItem.product.currentSubName %}
                        {{ catalogItem.product.currentSubName }}
                {% endif %}
                {% if catalogItem.product.nameSuffix %}
                        {{ catalogItem.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.product.nameSupplier %}
                        {{ catalogItem.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.product.text %}
                        {{ catalogItem.product.text }}
                {% endif %}
                {% if catalogItem.product.attribute %}
                        {{ catalogItem.product.attribute.name }}
                        {{ catalogItem.product.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogItem.product.attribute.values %}
                        {% endfor %}
                        {% if catalogItem.product.attribute.description %}
                                {{ catalogItem.product.attribute.description }}
                        {% endif %}
                        {% if catalogItem.product.attribute.group %}
                        {% endif %}
                        {% if catalogItem.product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.brand %}
                        {{ catalogItem.product.brand.id }}
                        {{ catalogItem.product.brand.name }}
                        {% if catalogItem.product.brand.flagImportant %} ... {% endif %}
                        {% for category in catalogItem.product.brand.categories %}
                        {% endfor %}
                        {% if catalogItem.product.brand.code %}
                                {{ catalogItem.product.brand.code }}
                        {% endif %}
                        {% if catalogItem.product.brand.web %}
                                {{ catalogItem.product.brand.web }}
                        {% endif %}
                        {% if catalogItem.product.brand.text %}
                                {{ catalogItem.product.brand.text }}
                        {% endif %}
                        {% if catalogItem.product.brand.image %}
                        {% endif %}
                        {% if catalogItem.product.brand.seo %}
                        {% endif %}
                        {% if catalogItem.product.brand.contentGrid %}
                                {{ catalogItem.product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.imageForEnumValueId %}
                        {{ catalogItem.product.imageForEnumValueId.originalHeight }}
                        {{ catalogItem.product.imageForEnumValueId.originalWidth }}
                        {{ catalogItem.product.imageForEnumValueId.url }}
                        {% if catalogItem.product.imageForEnumValueId.alt %}
                                {{ catalogItem.product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId.text %}
                                {{ catalogItem.product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.image %}
                        {{ catalogItem.product.image.originalHeight }}
                        {{ catalogItem.product.image.originalWidth }}
                        {{ catalogItem.product.image.url }}
                        {% if catalogItem.product.image.alt %}
                                {{ catalogItem.product.image.alt }}
                        {% endif %}
                        {% if catalogItem.product.image.text %}
                                {{ catalogItem.product.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.successor %}
                        {{ catalogItem.product.successor.id }}
                        {{ catalogItem.product.successor.name }}
                        {{ catalogItem.product.successor.trackingId }}
                        {{ catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.successor.active %} ... {% endif %}
                        {% if catalogItem.product.successor.compared %} ... {% endif %}
                        {% if catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.successor.flagNew %} ... {% endif %}
                        {% if catalogItem.product.successor.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.successor.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.successor.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.successor.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.successor.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.successor.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.successor.videos %}
                        {% endfor %}
                        {{ catalogItem.product.successor.trackingIds }}
                        {% if catalogItem.product.successor.currentSubName %}
                                {{ catalogItem.product.successor.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSuffix %}
                                {{ catalogItem.product.successor.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSupplier %}
                                {{ catalogItem.product.successor.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.successor.text %}
                                {{ catalogItem.product.successor.text }}
                        {% endif %}
                        {% if catalogItem.product.successor.attribute %}
                        {% endif %}
                        {% if catalogItem.product.successor.brand %}
                        {% endif %}
                        {% if catalogItem.product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor.image %}
                        {% endif %}
                        {% if catalogItem.product.successor.seo %}
                        {% endif %}
                        {% if catalogItem.product.successor.supplier %}
                        {% endif %}
                        {% if catalogItem.product.successor.unit %}
                        {% endif %}
                        {% if catalogItem.product.successor.variant %}
                        {% endif %}
                        {% if catalogItem.product.successor.warranty %}
                        {% endif %}
                        {% if catalogItem.product.successor.contentGrid %}
                                {{ catalogItem.product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.seo %}
                        {% if catalogItem.product.seo.description %}
                                {{ catalogItem.product.seo.description }}
                        {% endif %}
                        {% if catalogItem.product.seo.keywords %}
                                {{ catalogItem.product.seo.keywords }}
                        {% endif %}
                        {% if catalogItem.product.seo.title %}
                                {{ catalogItem.product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.supplier %}
                        {{ catalogItem.product.supplier.id }}
                        {{ catalogItem.product.supplier.name }}
                {% endif %}
                {% if catalogItem.product.unit %}
                        {{ catalogItem.product.unit.name }}
                {% endif %}
                {% if catalogItem.product.variant %}
                        {{ catalogItem.product.variant.id }}
                        {{ catalogItem.product.variant.name }}
                        {{ catalogItem.product.variant.trackingId }}
                        {% if catalogItem.product.variant.active %} ... {% endif %}
                        {% if catalogItem.product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.product.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.product.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.product.variant.legacyRel %}
                                {{ catalogItem.product.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.warranty %}
                        {{ catalogItem.product.warranty.months }}
                {% endif %}
                {% if catalogItem.product.contentGrid %}
                        {{ catalogItem.product.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogItem.unit %}
                {{ catalogItem.unit.name }}
        {% endif %}
        {% if catalogItem.upsell %}
                {{ catalogItem.upsell.id }}
                {{ catalogItem.upsell.name }}
                {% if catalogItem.upsell.inCart %} ... {% endif %}
                {{ catalogItem.upsell.category.id }}
                {{ catalogItem.upsell.category.productCount }}
                {{ catalogItem.upsell.category.productInStockCount }}
                {{ catalogItem.upsell.category.totalStockQuantity }}
                {{ catalogItem.upsell.category.headline }}
                {{ catalogItem.upsell.category.menuName }}
                {{ catalogItem.upsell.category.name }}
                {% if catalogItem.upsell.category.flagErotic %} ... {% endif %}
                {% if catalogItem.upsell.category.flagImportant %} ... {% endif %}
                {% if catalogItem.upsell.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.upsell.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.upsell.category.videos %}
                {% endfor %}
                {{ catalogItem.upsell.category.pathIds }}
                {{ catalogItem.upsell.category.pathNames }}
                {{ catalogItem.upsell.category.templateAttribute }}
                {% if catalogItem.upsell.category.subHeadline %}
                        {{ catalogItem.upsell.category.subHeadline }}
                {% endif %}
                {% if catalogItem.upsell.category.text %}
                        {{ catalogItem.upsell.category.text }}
                {% endif %}
                {% if catalogItem.upsell.category.parent %}
                {% endif %}
                {% if catalogItem.upsell.category.image %}
                {% endif %}
                {% if catalogItem.upsell.category.contentGrid %}
                        {{ catalogItem.upsell.category.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.price.vatRate }}
                {% if catalogItem.upsell.price.discountPercent %}
                        {{ catalogItem.upsell.price.discountPercent }}
                {% endif %}
                {% if catalogItem.upsell.price.discountValidTo %}
                        {{ catalogItem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.upsell.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.upsell.price.discount %}
                {% endif %}
                {{ catalogItem.upsell.product.id }}
                {{ catalogItem.upsell.product.name }}
                {{ catalogItem.upsell.product.trackingId }}
                {{ catalogItem.upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.upsell.product.active %} ... {% endif %}
                {% if catalogItem.upsell.product.compared %} ... {% endif %}
                {% if catalogItem.upsell.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.upsell.product.flagNew %} ... {% endif %}
                {% if catalogItem.upsell.product.flagPromo %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSellout %} ... {% endif %}
                {% if catalogItem.upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.categories %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.upsell.product.files %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.upsell.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.upsell.product.videos %}
                {% endfor %}
                {{ catalogItem.upsell.product.trackingIds }}
                {% if catalogItem.upsell.product.currentSubName %}
                        {{ catalogItem.upsell.product.currentSubName }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSuffix %}
                        {{ catalogItem.upsell.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSupplier %}
                        {{ catalogItem.upsell.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.upsell.product.text %}
                        {{ catalogItem.upsell.product.text }}
                {% endif %}
                {% if catalogItem.upsell.product.attribute %}
                {% endif %}
                {% if catalogItem.upsell.product.brand %}
                {% endif %}
                {% if catalogItem.upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.upsell.product.image %}
                {% endif %}
                {% if catalogItem.upsell.product.successor %}
                {% endif %}
                {% if catalogItem.upsell.product.seo %}
                {% endif %}
                {% if catalogItem.upsell.product.supplier %}
                {% endif %}
                {% if catalogItem.upsell.product.unit %}
                {% endif %}
                {% if catalogItem.upsell.product.variant %}
                {% endif %}
                {% if catalogItem.upsell.product.warranty %}
                {% endif %}
                {% if catalogItem.upsell.product.contentGrid %}
                        {{ catalogItem.upsell.product.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.group.id }}
                {{ catalogItem.upsell.group.requiredNoteMaximumLength }}
                {{ catalogItem.upsell.group.name }}
                {% if catalogItem.upsell.group.requiredNote %} ... {% endif %}
                {% if catalogItem.upsell.group.requiredUpload %} ... {% endif %}
                {% if catalogItem.upsell.group.singleSelection %} ... {% endif %}
                {% if catalogItem.upsell.group.text %}
                        {{ catalogItem.upsell.group.text }}
                {% endif %}
                {% if catalogItem.upsell.group.uploadInput %}
                        {{ catalogItem.upsell.group.uploadInput }}
                {% endif %}
                {% if catalogItem.upsell.code %}
                        {{ catalogItem.upsell.code }}
                {% endif %}
                {% if catalogItem.upsell.vatRate %}
                        {{ catalogItem.upsell.vatRate }}
                {% endif %}
                {% if catalogItem.upsell.image %}
                        {{ catalogItem.upsell.image.originalHeight }}
                        {{ catalogItem.upsell.image.originalWidth }}
                        {{ catalogItem.upsell.image.url }}
                        {% if catalogItem.upsell.image.alt %}
                                {{ catalogItem.upsell.image.alt }}
                        {% endif %}
                        {% if catalogItem.upsell.image.text %}
                                {{ catalogItem.upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.upsell.unit %}
                        {{ catalogItem.upsell.unit.name }}
                {% endif %}
        {% endif %}
        {% if catalogItem.variant %}
                {{ catalogItem.variant.id }}
                {{ catalogItem.variant.name }}
                {{ catalogItem.variant.trackingId }}
                {% if catalogItem.variant.active %} ... {% endif %}
                {% if catalogItem.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogItem.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.item.id }}
                {{ catalogItem.variant.item.name }}
                {{ catalogItem.variant.item.trackingId }}
                {% if catalogItem.variant.item.digital %} ... {% endif %}
                {% if catalogItem.variant.item.sellable %} ... {% endif %}
                {% if catalogItem.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.variant.item.trackingIds }}
                {{ catalogItem.variant.item.storageLocations }}
                {% if catalogItem.variant.item.packageHeight %}
                        {{ catalogItem.variant.item.packageHeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageLength %}
                        {{ catalogItem.variant.item.packageLength }}
                {% endif %}
                {% if catalogItem.variant.item.packageWeight %}
                        {{ catalogItem.variant.item.packageWeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageWidth %}
                        {{ catalogItem.variant.item.packageWidth }}
                {% endif %}
                {% if catalogItem.variant.item.code %}
                        {{ catalogItem.variant.item.code }}
                {% endif %}
                {% if catalogItem.variant.item.bundle %}
                {% endif %}
                {% if catalogItem.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.variant.item.image %}
                {% endif %}
                {% if catalogItem.variant.item.price %}
                {% endif %}
                {% if catalogItem.variant.item.url %}
                {% endif %}
                {{ catalogItem.variant.product.id }}
                {{ catalogItem.variant.product.name }}
                {{ catalogItem.variant.product.trackingId }}
                {{ catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.variant.product.active %} ... {% endif %}
                {% if catalogItem.variant.product.compared %} ... {% endif %}
                {% if catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.variant.product.flagNew %} ... {% endif %}
                {% if catalogItem.variant.product.flagPromo %} ... {% endif %}
                {% if catalogItem.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.variant.product.flagSellout %} ... {% endif %}
                {% if catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.variant.product.categories %}
                {% endfor %}
                {% for category in catalogItem.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.variant.product.files %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.variant.product.videos %}
                {% endfor %}
                {{ catalogItem.variant.product.trackingIds }}
                {% if catalogItem.variant.product.currentSubName %}
                        {{ catalogItem.variant.product.currentSubName }}
                {% endif %}
                {% if catalogItem.variant.product.nameSuffix %}
                        {{ catalogItem.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.variant.product.nameSupplier %}
                        {{ catalogItem.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.variant.product.text %}
                        {{ catalogItem.variant.product.text }}
                {% endif %}
                {% if catalogItem.variant.product.attribute %}
                {% endif %}
                {% if catalogItem.variant.product.brand %}
                {% endif %}
                {% if catalogItem.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.variant.product.image %}
                {% endif %}
                {% if catalogItem.variant.product.successor %}
                {% endif %}
                {% if catalogItem.variant.product.seo %}
                {% endif %}
                {% if catalogItem.variant.product.supplier %}
                {% endif %}
                {% if catalogItem.variant.product.unit %}
                {% endif %}
                {% if catalogItem.variant.product.warranty %}
                {% endif %}
                {% if catalogItem.variant.product.contentGrid %}
                        {{ catalogItem.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.url }}
                {{ catalogItem.variant.url.absolute }}
                {{ catalogItem.variant.url.path }}
                {% if catalogItem.variant.legacyRel %}
                        {{ catalogItem.variant.legacyRel }}
                {% endif %}
                {% if catalogItem.variant.image %}
                        {{ catalogItem.variant.image.originalHeight }}
                        {{ catalogItem.variant.image.originalWidth }}
                        {{ catalogItem.variant.image.url }}
                        {% if catalogItem.variant.image.alt %}
                                {{ catalogItem.variant.image.alt }}
                        {% endif %}
                        {% if catalogItem.variant.image.text %}
                                {{ catalogItem.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for catalogItem in order.items %}
        {{ catalogItem.amount }}
        {{ catalogItem.id }}
        {{ catalogItem.name }}
        {{ catalogItem.productName }}
        {{ catalogItem.trackingId }}
        {{ catalogItem.vatRate }}
        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
        {% if catalogItem.catalogItem %} ... {% endif %}
        {% if catalogItem.deleteAllowed %} ... {% endif %}
        {% if catalogItem.discountItem %} ... {% endif %}
        {% if catalogItem.gift %} ... {% endif %}
        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for catalogItem in catalogItem.children %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for orderItemError in catalogItem.errors %}
                {{ orderItemError.recommendedAmount }}
                {{ orderItemError.code }}
                {{ orderItemError.itemName }}
                {{ orderItemError.message }}
        {% endfor %}
        {{ catalogItem.priceTotal.vatRate }}
        {{ catalogItem.priceTotal.current.currency }}
        {{ catalogItem.priceTotal.current.formatted }}
        {{ catalogItem.priceTotal.current.value }}
        {% if catalogItem.priceTotal.discountPercent %}
                {{ catalogItem.priceTotal.discountPercent }}
        {% endif %}
        {% if catalogItem.priceTotal.discountValidTo %}
                {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.priceTotal.beforeDiscount %}
                {{ catalogItem.priceTotal.beforeDiscount.currency }}
                {{ catalogItem.priceTotal.beforeDiscount.formatted }}
                {{ catalogItem.priceTotal.beforeDiscount.value }}
        {% endif %}
        {% if catalogItem.priceTotal.discount %}
                {{ catalogItem.priceTotal.discount.currency }}
                {{ catalogItem.priceTotal.discount.formatted }}
                {{ catalogItem.priceTotal.discount.value }}
        {% endif %}
        {{ catalogItem.price.vatRate }}
        {{ catalogItem.price.current.currency }}
        {{ catalogItem.price.current.formatted }}
        {{ catalogItem.price.current.value }}
        {% if catalogItem.price.discountPercent %}
                {{ catalogItem.price.discountPercent }}
        {% endif %}
        {% if catalogItem.price.discountValidTo %}
                {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.price.beforeDiscount %}
                {{ catalogItem.price.beforeDiscount.currency }}
                {{ catalogItem.price.beforeDiscount.formatted }}
                {{ catalogItem.price.beforeDiscount.value }}
        {% endif %}
        {% if catalogItem.price.discount %}
                {{ catalogItem.price.discount.currency }}
                {{ catalogItem.price.discount.formatted }}
                {{ catalogItem.price.discount.value }}
        {% endif %}
        {% for upsell in catalogItem.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogItem.trackingIds }}
        {% if catalogItem.code %}
                {{ catalogItem.code }}
        {% endif %}
        {% if catalogItem.note %}
                {{ catalogItem.note }}
        {% endif %}
        {% if catalogItem.variantName %}
                {{ catalogItem.variantName }}
        {% endif %}
        {% if catalogItem.image %}
                {{ catalogItem.image.originalHeight }}
                {{ catalogItem.image.originalWidth }}
                {{ catalogItem.image.url }}
                {% if catalogItem.image.alt %}
                        {{ catalogItem.image.alt }}
                {% endif %}
                {% if catalogItem.image.text %}
                        {{ catalogItem.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogItem.item %}
                {{ catalogItem.item.id }}
                {{ catalogItem.item.name }}
                {{ catalogItem.item.trackingId }}
                {% if catalogItem.item.digital %} ... {% endif %}
                {% if catalogItem.item.sellable %} ... {% endif %}
                {% if catalogItem.item.service %} ... {% endif %}
                {{ catalogItem.item.availability.availableAmount }}
                {{ catalogItem.item.availability.availableAmountInShowroom }}
                {{ catalogItem.item.availability.availableAmountInStockroom }}
                {{ catalogItem.item.availability.availableAmountInStorageCenter }}
                {{ catalogItem.item.availability.hours }}
                {{ catalogItem.item.availability.totalAmount }}
                {% if catalogItem.item.availability.inShowroom %} ... {% endif %}
                {% if catalogItem.item.availability.inStock %} ... {% endif %}
                {% if catalogItem.item.availability.preorder %} ... {% endif %}
                {% if catalogItem.item.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in catalogItem.item.availability.deliveryOptions %}
                {% endfor %}
                {% if catalogItem.item.availability.text %}
                        {{ catalogItem.item.availability.text }}
                {% endif %}
                {% if catalogItem.item.availability.dateExpected %}
                        {{ catalogItem.item.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.item.availability.deliveryOption %}
                {% endif %}
                {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.product.id }}
                {{ catalogItem.item.product.name }}
                {{ catalogItem.item.product.trackingId }}
                {{ catalogItem.item.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.item.product.active %} ... {% endif %}
                {% if catalogItem.item.product.compared %} ... {% endif %}
                {% if catalogItem.item.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.item.product.flagNew %} ... {% endif %}
                {% if catalogItem.item.product.flagPromo %} ... {% endif %}
                {% if catalogItem.item.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.item.product.flagSellout %} ... {% endif %}
                {% if catalogItem.item.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.item.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.item.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.item.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.item.product.categories %}
                {% endfor %}
                {% for category in catalogItem.item.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.item.product.files %}
                {% endfor %}
                {% for image in catalogItem.item.product.images %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.item.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.item.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.item.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.item.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.item.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.item.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.item.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.item.product.videos %}
                {% endfor %}
                {{ catalogItem.item.product.trackingIds }}
                {% if catalogItem.item.product.currentSubName %}
                        {{ catalogItem.item.product.currentSubName }}
                {% endif %}
                {% if catalogItem.item.product.nameSuffix %}
                        {{ catalogItem.item.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.item.product.nameSupplier %}
                        {{ catalogItem.item.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.item.product.text %}
                        {{ catalogItem.item.product.text }}
                {% endif %}
                {% if catalogItem.item.product.attribute %}
                {% endif %}
                {% if catalogItem.item.product.brand %}
                {% endif %}
                {% if catalogItem.item.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.item.product.image %}
                {% endif %}
                {% if catalogItem.item.product.successor %}
                {% endif %}
                {% if catalogItem.item.product.seo %}
                {% endif %}
                {% if catalogItem.item.product.supplier %}
                {% endif %}
                {% if catalogItem.item.product.unit %}
                {% endif %}
                {% if catalogItem.item.product.variant %}
                {% endif %}
                {% if catalogItem.item.product.warranty %}
                {% endif %}
                {% if catalogItem.item.product.contentGrid %}
                        {{ catalogItem.item.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.item.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.trackingIds }}
                {{ catalogItem.item.storageLocations }}
                {% if catalogItem.item.packageHeight %}
                        {{ catalogItem.item.packageHeight }}
                {% endif %}
                {% if catalogItem.item.packageLength %}
                        {{ catalogItem.item.packageLength }}
                {% endif %}
                {% if catalogItem.item.packageWeight %}
                        {{ catalogItem.item.packageWeight }}
                {% endif %}
                {% if catalogItem.item.packageWidth %}
                        {{ catalogItem.item.packageWidth }}
                {% endif %}
                {% if catalogItem.item.code %}
                        {{ catalogItem.item.code }}
                {% endif %}
                {% if catalogItem.item.bundle %}
                        {% if catalogItem.item.bundle.multiPack %} ... {% endif %}
                        {% if catalogItem.item.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.cheapestDelivery %}
                        {{ catalogItem.item.cheapestDelivery.inputId }}
                        {{ catalogItem.item.cheapestDelivery.name }}
                        {{ catalogItem.item.cheapestDelivery.vatRate }}
                        {% if catalogItem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.currier %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.free %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.pickup %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.selected %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.text %}
                                {{ catalogItem.item.cheapestDelivery.text }}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.branch %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.carrier %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryDate %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.packageType %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.freeDelivery %}
                        {{ catalogItem.item.freeDelivery.name }}
                        {{ catalogItem.item.freeDelivery.vatRate }}
                        {% if catalogItem.item.freeDelivery.id %}
                                {{ catalogItem.item.freeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.closestFreeDelivery %}
                        {{ catalogItem.item.closestFreeDelivery.name }}
                        {{ catalogItem.item.closestFreeDelivery.vatRate }}
                        {% if catalogItem.item.closestFreeDelivery.id %}
                                {{ catalogItem.item.closestFreeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.packageDimensions %}
                        {{ catalogItem.item.packageDimensions }}
                        {{ catalogItem.item.packageDimensions.height }}
                        {{ catalogItem.item.packageDimensions.length }}
                        {{ catalogItem.item.packageDimensions.width }}
                        {{ catalogItem.item.packageDimensions.unit }}
                {% endif %}
                {% if catalogItem.item.image %}
                        {{ catalogItem.item.image.originalHeight }}
                        {{ catalogItem.item.image.originalWidth }}
                        {{ catalogItem.item.image.url }}
                        {% if catalogItem.item.image.alt %}
                                {{ catalogItem.item.image.alt }}
                        {% endif %}
                        {% if catalogItem.item.image.text %}
                                {{ catalogItem.item.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.price %}
                        {{ catalogItem.item.price.vatRate }}
                        {% if catalogItem.item.price.discountPercent %}
                                {{ catalogItem.item.price.discountPercent }}
                        {% endif %}
                        {% if catalogItem.item.price.discountValidTo %}
                                {{ catalogItem.item.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogItem.item.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogItem.item.price.discount %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.url %}
                        {{ catalogItem.item.url }}
                        {{ catalogItem.item.url.absolute }}
                        {{ catalogItem.item.url.path }}
                {% endif %}
                {% if catalogItem.item.variant %}
                        {{ catalogItem.item.variant.id }}
                        {{ catalogItem.item.variant.name }}
                        {{ catalogItem.item.variant.trackingId }}
                        {% if catalogItem.item.variant.active %} ... {% endif %}
                        {% if catalogItem.item.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.item.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.item.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.item.variant.legacyRel %}
                                {{ catalogItem.item.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.item.variant.image %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogItem.product %}
                {{ catalogItem.product.id }}
                {{ catalogItem.product.name }}
                {{ catalogItem.product.trackingId }}
                {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.product.active %} ... {% endif %}
                {% if catalogItem.product.compared %} ... {% endif %}
                {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.product.flagNew %} ... {% endif %}
                {% if catalogItem.product.flagPromo %} ... {% endif %}
                {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.product.flagSellout %} ... {% endif %}
                {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.category.id }}
                {{ catalogItem.product.category.productCount }}
                {{ catalogItem.product.category.productInStockCount }}
                {{ catalogItem.product.category.totalStockQuantity }}
                {{ catalogItem.product.category.headline }}
                {{ catalogItem.product.category.menuName }}
                {{ catalogItem.product.category.name }}
                {% if catalogItem.product.category.flagErotic %} ... {% endif %}
                {% if catalogItem.product.category.flagImportant %} ... {% endif %}
                {% if catalogItem.product.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.product.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.product.category.videos %}
                {% endfor %}
                {{ catalogItem.product.category.pathIds }}
                {{ catalogItem.product.category.pathNames }}
                {{ catalogItem.product.category.templateAttribute }}
                {% if catalogItem.product.category.subHeadline %}
                        {{ catalogItem.product.category.subHeadline }}
                {% endif %}
                {% if catalogItem.product.category.text %}
                        {{ catalogItem.product.category.text }}
                {% endif %}
                {% if catalogItem.product.category.parent %}
                {% endif %}
                {% if catalogItem.product.category.image %}
                {% endif %}
                {% if catalogItem.product.category.contentGrid %}
                        {{ catalogItem.product.category.contentGrid }}
                {% endif %}
                {% for category in catalogItem.product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogItem.product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogItem.product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.item.id }}
                {{ catalogItem.product.item.name }}
                {{ catalogItem.product.item.trackingId }}
                {% if catalogItem.product.item.digital %} ... {% endif %}
                {% if catalogItem.product.item.sellable %} ... {% endif %}
                {% if catalogItem.product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.product.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.product.item.trackingIds }}
                {{ catalogItem.product.item.storageLocations }}
                {% if catalogItem.product.item.packageHeight %}
                        {{ catalogItem.product.item.packageHeight }}
                {% endif %}
                {% if catalogItem.product.item.packageLength %}
                        {{ catalogItem.product.item.packageLength }}
                {% endif %}
                {% if catalogItem.product.item.packageWeight %}
                        {{ catalogItem.product.item.packageWeight }}
                {% endif %}
                {% if catalogItem.product.item.packageWidth %}
                        {{ catalogItem.product.item.packageWidth }}
                {% endif %}
                {% if catalogItem.product.item.code %}
                        {{ catalogItem.product.item.code }}
                {% endif %}
                {% if catalogItem.product.item.bundle %}
                {% endif %}
                {% if catalogItem.product.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.product.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.product.item.image %}
                {% endif %}
                {% if catalogItem.product.item.price %}
                {% endif %}
                {% if catalogItem.product.item.url %}
                {% endif %}
                {% if catalogItem.product.item.variant %}
                {% endif %}
                {% for label in catalogItem.product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogItem.product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogItem.product.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.successor %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.rating.count }}
                {% if catalogItem.product.rating.voted %} ... {% endif %}
                {% if catalogItem.product.rating.average %}
                        {{ catalogItem.product.rating.average }}
                {% endif %}
                {% for upsell in catalogItem.product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.url }}
                {{ catalogItem.product.url.absolute }}
                {{ catalogItem.product.url.path }}
                {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.variantType.id }}
                {{ catalogItem.product.variantType.name }}
                {% for video in catalogItem.product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.trackingIds }}
                {% if catalogItem.product.currentSubName %}
                        {{ catalogItem.product.currentSubName }}
                {% endif %}
                {% if catalogItem.product.nameSuffix %}
                        {{ catalogItem.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.product.nameSupplier %}
                        {{ catalogItem.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.product.text %}
                        {{ catalogItem.product.text }}
                {% endif %}
                {% if catalogItem.product.attribute %}
                        {{ catalogItem.product.attribute.name }}
                        {{ catalogItem.product.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogItem.product.attribute.values %}
                        {% endfor %}
                        {% if catalogItem.product.attribute.description %}
                                {{ catalogItem.product.attribute.description }}
                        {% endif %}
                        {% if catalogItem.product.attribute.group %}
                        {% endif %}
                        {% if catalogItem.product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.brand %}
                        {{ catalogItem.product.brand.id }}
                        {{ catalogItem.product.brand.name }}
                        {% if catalogItem.product.brand.flagImportant %} ... {% endif %}
                        {% for category in catalogItem.product.brand.categories %}
                        {% endfor %}
                        {% if catalogItem.product.brand.code %}
                                {{ catalogItem.product.brand.code }}
                        {% endif %}
                        {% if catalogItem.product.brand.web %}
                                {{ catalogItem.product.brand.web }}
                        {% endif %}
                        {% if catalogItem.product.brand.text %}
                                {{ catalogItem.product.brand.text }}
                        {% endif %}
                        {% if catalogItem.product.brand.image %}
                        {% endif %}
                        {% if catalogItem.product.brand.seo %}
                        {% endif %}
                        {% if catalogItem.product.brand.contentGrid %}
                                {{ catalogItem.product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.imageForEnumValueId %}
                        {{ catalogItem.product.imageForEnumValueId.originalHeight }}
                        {{ catalogItem.product.imageForEnumValueId.originalWidth }}
                        {{ catalogItem.product.imageForEnumValueId.url }}
                        {% if catalogItem.product.imageForEnumValueId.alt %}
                                {{ catalogItem.product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId.text %}
                                {{ catalogItem.product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.image %}
                        {{ catalogItem.product.image.originalHeight }}
                        {{ catalogItem.product.image.originalWidth }}
                        {{ catalogItem.product.image.url }}
                        {% if catalogItem.product.image.alt %}
                                {{ catalogItem.product.image.alt }}
                        {% endif %}
                        {% if catalogItem.product.image.text %}
                                {{ catalogItem.product.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.successor %}
                        {{ catalogItem.product.successor.id }}
                        {{ catalogItem.product.successor.name }}
                        {{ catalogItem.product.successor.trackingId }}
                        {{ catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.successor.active %} ... {% endif %}
                        {% if catalogItem.product.successor.compared %} ... {% endif %}
                        {% if catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.successor.flagNew %} ... {% endif %}
                        {% if catalogItem.product.successor.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.successor.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.successor.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.successor.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.successor.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.successor.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.successor.videos %}
                        {% endfor %}
                        {{ catalogItem.product.successor.trackingIds }}
                        {% if catalogItem.product.successor.currentSubName %}
                                {{ catalogItem.product.successor.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSuffix %}
                                {{ catalogItem.product.successor.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSupplier %}
                                {{ catalogItem.product.successor.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.successor.text %}
                                {{ catalogItem.product.successor.text }}
                        {% endif %}
                        {% if catalogItem.product.successor.attribute %}
                        {% endif %}
                        {% if catalogItem.product.successor.brand %}
                        {% endif %}
                        {% if catalogItem.product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor.image %}
                        {% endif %}
                        {% if catalogItem.product.successor.seo %}
                        {% endif %}
                        {% if catalogItem.product.successor.supplier %}
                        {% endif %}
                        {% if catalogItem.product.successor.unit %}
                        {% endif %}
                        {% if catalogItem.product.successor.variant %}
                        {% endif %}
                        {% if catalogItem.product.successor.warranty %}
                        {% endif %}
                        {% if catalogItem.product.successor.contentGrid %}
                                {{ catalogItem.product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.seo %}
                        {% if catalogItem.product.seo.description %}
                                {{ catalogItem.product.seo.description }}
                        {% endif %}
                        {% if catalogItem.product.seo.keywords %}
                                {{ catalogItem.product.seo.keywords }}
                        {% endif %}
                        {% if catalogItem.product.seo.title %}
                                {{ catalogItem.product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.supplier %}
                        {{ catalogItem.product.supplier.id }}
                        {{ catalogItem.product.supplier.name }}
                {% endif %}
                {% if catalogItem.product.unit %}
                        {{ catalogItem.product.unit.name }}
                {% endif %}
                {% if catalogItem.product.variant %}
                        {{ catalogItem.product.variant.id }}
                        {{ catalogItem.product.variant.name }}
                        {{ catalogItem.product.variant.trackingId }}
                        {% if catalogItem.product.variant.active %} ... {% endif %}
                        {% if catalogItem.product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.product.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.product.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.product.variant.legacyRel %}
                                {{ catalogItem.product.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.warranty %}
                        {{ catalogItem.product.warranty.months }}
                {% endif %}
                {% if catalogItem.product.contentGrid %}
                        {{ catalogItem.product.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogItem.unit %}
                {{ catalogItem.unit.name }}
        {% endif %}
        {% if catalogItem.upsell %}
                {{ catalogItem.upsell.id }}
                {{ catalogItem.upsell.name }}
                {% if catalogItem.upsell.inCart %} ... {% endif %}
                {{ catalogItem.upsell.category.id }}
                {{ catalogItem.upsell.category.productCount }}
                {{ catalogItem.upsell.category.productInStockCount }}
                {{ catalogItem.upsell.category.totalStockQuantity }}
                {{ catalogItem.upsell.category.headline }}
                {{ catalogItem.upsell.category.menuName }}
                {{ catalogItem.upsell.category.name }}
                {% if catalogItem.upsell.category.flagErotic %} ... {% endif %}
                {% if catalogItem.upsell.category.flagImportant %} ... {% endif %}
                {% if catalogItem.upsell.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.upsell.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.upsell.category.videos %}
                {% endfor %}
                {{ catalogItem.upsell.category.pathIds }}
                {{ catalogItem.upsell.category.pathNames }}
                {{ catalogItem.upsell.category.templateAttribute }}
                {% if catalogItem.upsell.category.subHeadline %}
                        {{ catalogItem.upsell.category.subHeadline }}
                {% endif %}
                {% if catalogItem.upsell.category.text %}
                        {{ catalogItem.upsell.category.text }}
                {% endif %}
                {% if catalogItem.upsell.category.parent %}
                {% endif %}
                {% if catalogItem.upsell.category.image %}
                {% endif %}
                {% if catalogItem.upsell.category.contentGrid %}
                        {{ catalogItem.upsell.category.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.price.vatRate }}
                {% if catalogItem.upsell.price.discountPercent %}
                        {{ catalogItem.upsell.price.discountPercent }}
                {% endif %}
                {% if catalogItem.upsell.price.discountValidTo %}
                        {{ catalogItem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.upsell.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.upsell.price.discount %}
                {% endif %}
                {{ catalogItem.upsell.product.id }}
                {{ catalogItem.upsell.product.name }}
                {{ catalogItem.upsell.product.trackingId }}
                {{ catalogItem.upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.upsell.product.active %} ... {% endif %}
                {% if catalogItem.upsell.product.compared %} ... {% endif %}
                {% if catalogItem.upsell.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.upsell.product.flagNew %} ... {% endif %}
                {% if catalogItem.upsell.product.flagPromo %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSellout %} ... {% endif %}
                {% if catalogItem.upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.categories %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.upsell.product.files %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.upsell.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.upsell.product.videos %}
                {% endfor %}
                {{ catalogItem.upsell.product.trackingIds }}
                {% if catalogItem.upsell.product.currentSubName %}
                        {{ catalogItem.upsell.product.currentSubName }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSuffix %}
                        {{ catalogItem.upsell.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSupplier %}
                        {{ catalogItem.upsell.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.upsell.product.text %}
                        {{ catalogItem.upsell.product.text }}
                {% endif %}
                {% if catalogItem.upsell.product.attribute %}
                {% endif %}
                {% if catalogItem.upsell.product.brand %}
                {% endif %}
                {% if catalogItem.upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.upsell.product.image %}
                {% endif %}
                {% if catalogItem.upsell.product.successor %}
                {% endif %}
                {% if catalogItem.upsell.product.seo %}
                {% endif %}
                {% if catalogItem.upsell.product.supplier %}
                {% endif %}
                {% if catalogItem.upsell.product.unit %}
                {% endif %}
                {% if catalogItem.upsell.product.variant %}
                {% endif %}
                {% if catalogItem.upsell.product.warranty %}
                {% endif %}
                {% if catalogItem.upsell.product.contentGrid %}
                        {{ catalogItem.upsell.product.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.group.id }}
                {{ catalogItem.upsell.group.requiredNoteMaximumLength }}
                {{ catalogItem.upsell.group.name }}
                {% if catalogItem.upsell.group.requiredNote %} ... {% endif %}
                {% if catalogItem.upsell.group.requiredUpload %} ... {% endif %}
                {% if catalogItem.upsell.group.singleSelection %} ... {% endif %}
                {% if catalogItem.upsell.group.text %}
                        {{ catalogItem.upsell.group.text }}
                {% endif %}
                {% if catalogItem.upsell.group.uploadInput %}
                        {{ catalogItem.upsell.group.uploadInput }}
                {% endif %}
                {% if catalogItem.upsell.code %}
                        {{ catalogItem.upsell.code }}
                {% endif %}
                {% if catalogItem.upsell.vatRate %}
                        {{ catalogItem.upsell.vatRate }}
                {% endif %}
                {% if catalogItem.upsell.image %}
                        {{ catalogItem.upsell.image.originalHeight }}
                        {{ catalogItem.upsell.image.originalWidth }}
                        {{ catalogItem.upsell.image.url }}
                        {% if catalogItem.upsell.image.alt %}
                                {{ catalogItem.upsell.image.alt }}
                        {% endif %}
                        {% if catalogItem.upsell.image.text %}
                                {{ catalogItem.upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.upsell.unit %}
                        {{ catalogItem.upsell.unit.name }}
                {% endif %}
        {% endif %}
        {% if catalogItem.variant %}
                {{ catalogItem.variant.id }}
                {{ catalogItem.variant.name }}
                {{ catalogItem.variant.trackingId }}
                {% if catalogItem.variant.active %} ... {% endif %}
                {% if catalogItem.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogItem.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.item.id }}
                {{ catalogItem.variant.item.name }}
                {{ catalogItem.variant.item.trackingId }}
                {% if catalogItem.variant.item.digital %} ... {% endif %}
                {% if catalogItem.variant.item.sellable %} ... {% endif %}
                {% if catalogItem.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.variant.item.trackingIds }}
                {{ catalogItem.variant.item.storageLocations }}
                {% if catalogItem.variant.item.packageHeight %}
                        {{ catalogItem.variant.item.packageHeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageLength %}
                        {{ catalogItem.variant.item.packageLength }}
                {% endif %}
                {% if catalogItem.variant.item.packageWeight %}
                        {{ catalogItem.variant.item.packageWeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageWidth %}
                        {{ catalogItem.variant.item.packageWidth }}
                {% endif %}
                {% if catalogItem.variant.item.code %}
                        {{ catalogItem.variant.item.code }}
                {% endif %}
                {% if catalogItem.variant.item.bundle %}
                {% endif %}
                {% if catalogItem.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.variant.item.image %}
                {% endif %}
                {% if catalogItem.variant.item.price %}
                {% endif %}
                {% if catalogItem.variant.item.url %}
                {% endif %}
                {{ catalogItem.variant.product.id }}
                {{ catalogItem.variant.product.name }}
                {{ catalogItem.variant.product.trackingId }}
                {{ catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.variant.product.active %} ... {% endif %}
                {% if catalogItem.variant.product.compared %} ... {% endif %}
                {% if catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.variant.product.flagNew %} ... {% endif %}
                {% if catalogItem.variant.product.flagPromo %} ... {% endif %}
                {% if catalogItem.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.variant.product.flagSellout %} ... {% endif %}
                {% if catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.variant.product.categories %}
                {% endfor %}
                {% for category in catalogItem.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.variant.product.files %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.variant.product.videos %}
                {% endfor %}
                {{ catalogItem.variant.product.trackingIds }}
                {% if catalogItem.variant.product.currentSubName %}
                        {{ catalogItem.variant.product.currentSubName }}
                {% endif %}
                {% if catalogItem.variant.product.nameSuffix %}
                        {{ catalogItem.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.variant.product.nameSupplier %}
                        {{ catalogItem.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.variant.product.text %}
                        {{ catalogItem.variant.product.text }}
                {% endif %}
                {% if catalogItem.variant.product.attribute %}
                {% endif %}
                {% if catalogItem.variant.product.brand %}
                {% endif %}
                {% if catalogItem.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.variant.product.image %}
                {% endif %}
                {% if catalogItem.variant.product.successor %}
                {% endif %}
                {% if catalogItem.variant.product.seo %}
                {% endif %}
                {% if catalogItem.variant.product.supplier %}
                {% endif %}
                {% if catalogItem.variant.product.unit %}
                {% endif %}
                {% if catalogItem.variant.product.warranty %}
                {% endif %}
                {% if catalogItem.variant.product.contentGrid %}
                        {{ catalogItem.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.url }}
                {{ catalogItem.variant.url.absolute }}
                {{ catalogItem.variant.url.path }}
                {% if catalogItem.variant.legacyRel %}
                        {{ catalogItem.variant.legacyRel }}
                {% endif %}
                {% if catalogItem.variant.image %}
                        {{ catalogItem.variant.image.originalHeight }}
                        {{ catalogItem.variant.image.originalWidth }}
                        {{ catalogItem.variant.image.url }}
                        {% if catalogItem.variant.image.alt %}
                                {{ catalogItem.variant.image.alt }}
                        {% endif %}
                        {% if catalogItem.variant.image.text %}
                                {{ catalogItem.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for discountItem in order.discountItems %}
        {{ discountItem.amount }}
        {{ discountItem.id }}
        {{ discountItem.name }}
        {{ discountItem.vatRate }}
        {% if discountItem.amountChangeAllowed %} ... {% endif %}
        {% if discountItem.catalogItem %} ... {% endif %}
        {% if discountItem.deleteAllowed %} ... {% endif %}
        {% if discountItem.discountItem %} ... {% endif %}
        {% for discountItem in discountItem.children %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {% if discountItem.note %}
                {{ discountItem.note }}
        {% endif %}
        {% if discountItem.trackingId %}
                {{ discountItem.trackingId }}
        {% endif %}
        {% if discountItem.percent %}
                {{ discountItem.percent }}
        {% endif %}
        {% if discountItem.discountCode %}
                {{ discountItem.discountCode.code }}
                {{ discountItem.discountCode.name }}
        {% endif %}
        {% if discountItem.voucher %}
                {{ discountItem.voucher.code }}
                {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if discountItem.price %}
                {{ discountItem.price.vatRate }}
                {{ discountItem.price.current.currency }}
                {{ discountItem.price.current.formatted }}
                {{ discountItem.price.current.value }}
                {% if discountItem.price.discountPercent %}
                        {{ discountItem.price.discountPercent }}
                {% endif %}
                {% if discountItem.price.discountValidTo %}
                        {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price.beforeDiscount %}
                        {{ discountItem.price.beforeDiscount.currency }}
                        {{ discountItem.price.beforeDiscount.formatted }}
                        {{ discountItem.price.beforeDiscount.value }}
                {% endif %}
                {% if discountItem.price.discount %}
                        {{ discountItem.price.discount.currency }}
                        {{ discountItem.price.discount.formatted }}
                        {{ discountItem.price.discount.value }}
                {% endif %}
        {% endif %}
        {% if discountItem.priceTotal %}
                {{ discountItem.priceTotal.vatRate }}
                {{ discountItem.priceTotal.current.currency }}
                {{ discountItem.priceTotal.current.formatted }}
                {{ discountItem.priceTotal.current.value }}
                {% if discountItem.priceTotal.discountPercent %}
                        {{ discountItem.priceTotal.discountPercent }}
                {% endif %}
                {% if discountItem.priceTotal.discountValidTo %}
                        {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.priceTotal.beforeDiscount %}
                        {{ discountItem.priceTotal.beforeDiscount.currency }}
                        {{ discountItem.priceTotal.beforeDiscount.formatted }}
                        {{ discountItem.priceTotal.beforeDiscount.value }}
                {% endif %}
                {% if discountItem.priceTotal.discount %}
                        {{ discountItem.priceTotal.discount.currency }}
                        {{ discountItem.priceTotal.discount.formatted }}
                        {{ discountItem.priceTotal.discount.value }}
                {% endif %}
        {% endif %}
        {% if discountItem.unit %}
                {{ discountItem.unit.name }}
        {% endif %}
{% endfor %}
{{ order.price.total.currency }}
{{ order.price.total.formatted }}
{{ order.price.total.value }}
{{ order.price.unpaid.currency }}
{{ order.price.unpaid.formatted }}
{{ order.price.unpaid.value }}
{{ order.price.paid.currency }}
{{ order.price.paid.formatted }}
{{ order.price.paid.value }}
{{ order.status.id }}
{{ order.status.name }}
{% if order.status.subId %}
        {{ order.status.subId }}
{% endif %}

{% for socialProfile in order.shop.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}
{% if order.shop.email %}
        {{ order.shop.email }}
{% endif %}
{% if order.shop.language %}
        {{ order.shop.language }}
{% endif %}
{% if order.shop.name %}
        {{ order.shop.name }}
{% endif %}
{% if order.shop.phone %}
        {{ order.shop.phone }}
{% endif %}
{% if order.shop.url %}
        {{ order.shop.url }}
{% endif %}
{% if order.shop.country %}
        {{ order.shop.country.code }}
        {{ order.shop.country.flagCircleUrl }}
        {{ order.shop.country.flagUrl }}
        {{ order.shop.country.name }}
        {% if order.shop.country.eU %} ... {% endif %}
{% endif %}
{% if order.shop.image %}
        {{ order.shop.image.originalHeight }}
        {{ order.shop.image.originalWidth }}
        {{ order.shop.image.url }}
        {% if order.shop.image.alt %}
                {{ order.shop.image.alt }}
        {% endif %}
        {% if order.shop.image.text %}
                {{ order.shop.image.text }}
        {% endif %}
{% endif %}
{{ order.url }}
{{ order.url.absolute }}
{{ order.url.path }}

{% for giftVoucher in order.purchasedGiftVouchers %}
        {{ giftVoucher.code }}
        {{ giftVoucher.name }}
        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
        {{ giftVoucher.value.currency }}
        {{ giftVoucher.value.formatted }}
{% endfor %}

{% for giftVoucher in order.vouchers %}
        {{ giftVoucher.code }}
        {{ giftVoucher.name }}
        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
        {{ giftVoucher.value.currency }}
        {{ giftVoucher.value.formatted }}
{% endfor %}

{% if order.code %}
        {{ order.code }}
{% endif %}

{% if order.note %}
        {{ order.note }}
{% endif %}

{% if order.date %}
        {{ order.date|date('d. m. Y H:i') }}
{% endif %}

{% if order.dateInStatus %}
        {{ order.dateInStatus|date('d. m. Y H:i') }}
{% endif %}

{% if order.customer %}
        {{ order.customer.id }}
        {{ order.customer.userPointsAvailable }}
        {{ order.customer.userPointsExpiringOn }}
        {{ order.customer.userPointsTotal }}
        {{ order.customer.name }}
        {{ order.customer.dateCreated|date('d. m. Y H:i') }}
        {% if order.customer.productOnWishlist %} ... {% endif %}
        {% if order.customer.wholesale %} ... {% endif %}
        {% for accountingDocument in order.customer.receipts %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.customer.address.delivery.city %}
                {{ order.customer.address.delivery.city }}
        {% endif %}
        {% if order.customer.address.delivery.company %}
                {{ order.customer.address.delivery.company }}
        {% endif %}
        {% if order.customer.address.delivery.companyId %}
                {{ order.customer.address.delivery.companyId }}
        {% endif %}
        {% if order.customer.address.delivery.email %}
                {{ order.customer.address.delivery.email }}
        {% endif %}
        {% if order.customer.address.delivery.phone %}
                {{ order.customer.address.delivery.phone }}
        {% endif %}
        {% if order.customer.address.delivery.region %}
                {{ order.customer.address.delivery.region }}
        {% endif %}
        {% if order.customer.address.delivery.street %}
                {{ order.customer.address.delivery.street }}
        {% endif %}
        {% if order.customer.address.delivery.vatId %}
                {{ order.customer.address.delivery.vatId }}
        {% endif %}
        {% if order.customer.address.delivery.zip %}
                {{ order.customer.address.delivery.zip }}
        {% endif %}
        {% if order.customer.address.delivery.country %}
        {% endif %}
        {% if order.customer.address.invoice.city %}
                {{ order.customer.address.invoice.city }}
        {% endif %}
        {% if order.customer.address.invoice.company %}
                {{ order.customer.address.invoice.company }}
        {% endif %}
        {% if order.customer.address.invoice.companyId %}
                {{ order.customer.address.invoice.companyId }}
        {% endif %}
        {% if order.customer.address.invoice.email %}
                {{ order.customer.address.invoice.email }}
        {% endif %}
        {% if order.customer.address.invoice.phone %}
                {{ order.customer.address.invoice.phone }}
        {% endif %}
        {% if order.customer.address.invoice.region %}
                {{ order.customer.address.invoice.region }}
        {% endif %}
        {% if order.customer.address.invoice.street %}
                {{ order.customer.address.invoice.street }}
        {% endif %}
        {% if order.customer.address.invoice.vatId %}
                {{ order.customer.address.invoice.vatId }}
        {% endif %}
        {% if order.customer.address.invoice.zip %}
                {{ order.customer.address.invoice.zip }}
        {% endif %}
        {% if order.customer.address.invoice.country %}
        {% endif %}
        {% for analyticsReport in order.customer.analyticReports %}
                {{ analyticsReport.name }}
                {{ analyticsReport.url }}
                {{ analyticsReport.url.absolute }}
                {{ analyticsReport.url.path }}
        {% endfor %}
        {% for order in order.customer.orders %}
                {{ order.amountOfItem }}
                {{ order.catalogItemCount }}
                {{ order.catalogItemTotalAmount }}
                {{ order.id }}
                {{ order.loyaltyPoints }}
                {{ order.usableLoyaltyPoints }}
                {{ order.language }}
                {{ order.vs }}
                {% if order.containsItem %} ... {% endif %}
                {% if order.erotic %} ... {% endif %}
                {% if order.externalReviewAllowed %} ... {% endif %}
                {% if order.paid %} ... {% endif %}
                {% if order.useLoyaltyPoints %} ... {% endif %}
                {% if order.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.availablePaymentMethods %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.payments %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryAddressRequired %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.delivery.name }}
                {{ order.delivery.vatRate }}
                {% if order.delivery.id %}
                        {{ order.delivery.id }}
                {% endif %}
                {% if order.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.status.id }}
                {{ order.status.name }}
                {% if order.status.subId %}
                        {{ order.status.subId }}
                {% endif %}
                {% for socialProfile in order.shop.socialProfiles %}
                {% endfor %}
                {% if order.shop.email %}
                        {{ order.shop.email }}
                {% endif %}
                {% if order.shop.language %}
                        {{ order.shop.language }}
                {% endif %}
                {% if order.shop.name %}
                        {{ order.shop.name }}
                {% endif %}
                {% if order.shop.phone %}
                        {{ order.shop.phone }}
                {% endif %}
                {% if order.shop.url %}
                        {{ order.shop.url }}
                {% endif %}
                {% if order.shop.country %}
                {% endif %}
                {% if order.shop.image %}
                {% endif %}
                {{ order.url }}
                {{ order.url.absolute }}
                {{ order.url.path }}
                {% for giftVoucher in order.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.code %}
                        {{ order.code }}
                {% endif %}
                {% if order.note %}
                        {{ order.note }}
                {% endif %}
                {% if order.date %}
                        {{ order.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.dateInStatus %}
                        {{ order.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery %}
                        {{ order.closestFreeDelivery.name }}
                        {{ order.closestFreeDelivery.vatRate }}
                        {% if order.closestFreeDelivery.id %}
                                {{ order.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder %}
                        {{ order.parentOrder.amountOfItem }}
                        {{ order.parentOrder.catalogItemCount }}
                        {{ order.parentOrder.catalogItemTotalAmount }}
                        {{ order.parentOrder.id }}
                        {{ order.parentOrder.loyaltyPoints }}
                        {{ order.parentOrder.usableLoyaltyPoints }}
                        {{ order.parentOrder.language }}
                        {{ order.parentOrder.vs }}
                        {% if order.parentOrder.containsItem %} ... {% endif %}
                        {% if order.parentOrder.erotic %} ... {% endif %}
                        {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                        {% if order.parentOrder.paid %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.parentOrder.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.parentOrder.payments %}
                        {% endfor %}
                        {% for transport in order.parentOrder.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.items %}
                        {% endfor %}
                        {% for discountItem in order.parentOrder.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.vouchers %}
                        {% endfor %}
                        {% if order.parentOrder.code %}
                                {{ order.parentOrder.code }}
                        {% endif %}
                        {% if order.parentOrder.note %}
                                {{ order.parentOrder.note }}
                        {% endif %}
                        {% if order.parentOrder.date %}
                                {{ order.parentOrder.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.dateInStatus %}
                                {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder.package %}
                        {% endif %}
                {% endif %}
                {% if order.package %}
                        {{ order.package.trackingUrl }}
                        {{ order.package.date|date('d. m. Y H:i') }}
                        {% if order.package.code %}
                                {{ order.package.code }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for order in order.customer.childOrders %}
                {{ order.amountOfItem }}
                {{ order.catalogItemCount }}
                {{ order.catalogItemTotalAmount }}
                {{ order.id }}
                {{ order.loyaltyPoints }}
                {{ order.usableLoyaltyPoints }}
                {{ order.language }}
                {{ order.vs }}
                {% if order.containsItem %} ... {% endif %}
                {% if order.erotic %} ... {% endif %}
                {% if order.externalReviewAllowed %} ... {% endif %}
                {% if order.paid %} ... {% endif %}
                {% if order.useLoyaltyPoints %} ... {% endif %}
                {% if order.useLoyaltyPointsManually %} ... {% endif %}
                {% for accountingDocument in order.accountingDocuments %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for payment in order.availablePaymentMethods %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for payment in order.payments %}
                        {{ payment.code }}
                        {{ payment.inputId }}
                        {{ payment.name }}
                        {{ payment.url }}
                        {{ payment.vatRate }}
                        {% if payment.free %} ... {% endif %}
                        {% if payment.inAdvance %} ... {% endif %}
                        {% if payment.selected %} ... {% endif %}
                        {% if payment.vs %}
                                {{ payment.vs }}
                        {% endif %}
                        {% if payment.qRCodeHTML %}
                                {{ payment.qRCodeHTML }}
                        {% endif %}
                        {% if payment.text %}
                                {{ payment.text }}
                        {% endif %}
                        {% if payment.bankAccount %}
                        {% endif %}
                        {% if payment.image %}
                        {% endif %}
                {% endfor %}
                {% for transport in order.availableTransportMethods %}
                        {{ transport.inputId }}
                        {{ transport.name }}
                        {{ transport.vatRate }}
                        {% if transport.branchRequired %} ... {% endif %}
                        {% if transport.currier %} ... {% endif %}
                        {% if transport.dateGuaranteed %} ... {% endif %}
                        {% if transport.deliveryAddressRequired %} ... {% endif %}
                        {% if transport.deliveryToAddress %} ... {% endif %}
                        {% if transport.free %} ... {% endif %}
                        {% if transport.pickup %} ... {% endif %}
                        {% if transport.selected %} ... {% endif %}
                        {% if transport.text %}
                                {{ transport.text }}
                        {% endif %}
                        {% if transport.branch %}
                        {% endif %}
                        {% if transport.carrier %}
                        {% endif %}
                        {% if transport.deliveryDate %}
                        {% endif %}
                        {% if transport.packageType %}
                        {% endif %}
                        {% if transport.image %}
                        {% endif %}
                {% endfor %}
                {{ order.delivery.name }}
                {{ order.delivery.vatRate }}
                {% if order.delivery.id %}
                        {{ order.delivery.id }}
                {% endif %}
                {% if order.delivery.freeLimit %}
                {% endif %}
                {% for catalogItem in order.catalogItems %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in order.items %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for catalogItem in catalogItem.children %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for discountItem in order.discountItems %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% for discountItem in discountItem.children %}
                        {% endfor %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {{ order.status.id }}
                {{ order.status.name }}
                {% if order.status.subId %}
                        {{ order.status.subId }}
                {% endif %}
                {% for socialProfile in order.shop.socialProfiles %}
                {% endfor %}
                {% if order.shop.email %}
                        {{ order.shop.email }}
                {% endif %}
                {% if order.shop.language %}
                        {{ order.shop.language }}
                {% endif %}
                {% if order.shop.name %}
                        {{ order.shop.name }}
                {% endif %}
                {% if order.shop.phone %}
                        {{ order.shop.phone }}
                {% endif %}
                {% if order.shop.url %}
                        {{ order.shop.url }}
                {% endif %}
                {% if order.shop.country %}
                {% endif %}
                {% if order.shop.image %}
                {% endif %}
                {{ order.url }}
                {{ order.url.absolute }}
                {{ order.url.path }}
                {% for giftVoucher in order.purchasedGiftVouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% for giftVoucher in order.vouchers %}
                        {{ giftVoucher.code }}
                        {{ giftVoucher.name }}
                        {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                        {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {% endfor %}
                {% if order.code %}
                        {{ order.code }}
                {% endif %}
                {% if order.note %}
                        {{ order.note }}
                {% endif %}
                {% if order.date %}
                        {{ order.date|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.dateInStatus %}
                        {{ order.dateInStatus|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.closestFreeDelivery %}
                        {{ order.closestFreeDelivery.name }}
                        {{ order.closestFreeDelivery.vatRate }}
                        {% if order.closestFreeDelivery.id %}
                                {{ order.closestFreeDelivery.id }}
                        {% endif %}
                        {% if order.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if order.parentOrder %}
                        {{ order.parentOrder.amountOfItem }}
                        {{ order.parentOrder.catalogItemCount }}
                        {{ order.parentOrder.catalogItemTotalAmount }}
                        {{ order.parentOrder.id }}
                        {{ order.parentOrder.loyaltyPoints }}
                        {{ order.parentOrder.usableLoyaltyPoints }}
                        {{ order.parentOrder.language }}
                        {{ order.parentOrder.vs }}
                        {% if order.parentOrder.containsItem %} ... {% endif %}
                        {% if order.parentOrder.erotic %} ... {% endif %}
                        {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
                        {% if order.parentOrder.paid %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
                        {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.parentOrder.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.parentOrder.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.parentOrder.payments %}
                        {% endfor %}
                        {% for transport in order.parentOrder.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.parentOrder.items %}
                        {% endfor %}
                        {% for discountItem in order.parentOrder.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.parentOrder.vouchers %}
                        {% endfor %}
                        {% if order.parentOrder.code %}
                                {{ order.parentOrder.code }}
                        {% endif %}
                        {% if order.parentOrder.note %}
                                {{ order.parentOrder.note }}
                        {% endif %}
                        {% if order.parentOrder.date %}
                                {{ order.parentOrder.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.dateInStatus %}
                                {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.parentOrder.closestFreeDelivery %}
                        {% endif %}
                        {% if order.parentOrder.package %}
                        {% endif %}
                {% endif %}
                {% if order.package %}
                        {{ order.package.trackingUrl }}
                        {{ order.package.date|date('d. m. Y H:i') }}
                        {% if order.package.code %}
                                {{ order.package.code }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for userPointChange in order.customer.userPointChanges %}
                {{ userPointChange.amount }}
                {{ userPointChange.text }}
                {{ userPointChange.date|date('d. m. Y H:i') }}
                {% if userPointChange.dateExpire %}
                        {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                {% endif %}
        {% endfor %}
        {{ order.customer.alternativeAddresses }}
        {% if order.customer.loyaltyCard %}
                {{ order.customer.loyaltyCard }}
        {% endif %}
{% endif %}

{% if order.closestFreeDelivery %}
        {{ order.closestFreeDelivery.name }}
        {{ order.closestFreeDelivery.vatRate }}
        {{ order.closestFreeDelivery.payment.code }}
        {{ order.closestFreeDelivery.payment.inputId }}
        {{ order.closestFreeDelivery.payment.name }}
        {{ order.closestFreeDelivery.payment.url }}
        {{ order.closestFreeDelivery.payment.vatRate }}
        {% if order.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if order.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if order.closestFreeDelivery.payment.selected %} ... {% endif %}
        {{ order.closestFreeDelivery.payment.price.vatRate }}
        {% if order.closestFreeDelivery.payment.price.discountPercent %}
                {{ order.closestFreeDelivery.payment.price.discountPercent }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.price.discountValidTo %}
                {{ order.closestFreeDelivery.payment.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.price.beforeDiscount %}
        {% endif %}
        {% if order.closestFreeDelivery.payment.price.discount %}
        {% endif %}
        {% if order.closestFreeDelivery.payment.vs %}
                {{ order.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.qRCodeHTML %}
                {{ order.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.text %}
                {{ order.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if order.closestFreeDelivery.payment.bankAccount %}
                {{ order.closestFreeDelivery.payment.bankAccount }}
                {{ order.closestFreeDelivery.payment.bankAccount.currency }}
                {% if order.closestFreeDelivery.payment.bankAccount.bic %}
                        {{ order.closestFreeDelivery.payment.bankAccount.bic }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount.iban %}
                        {{ order.closestFreeDelivery.payment.bankAccount.iban }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.bankAccount.local %}
                        {{ order.closestFreeDelivery.payment.bankAccount.local }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery.payment.image %}
                {{ order.closestFreeDelivery.payment.image.originalHeight }}
                {{ order.closestFreeDelivery.payment.image.originalWidth }}
                {{ order.closestFreeDelivery.payment.image.url }}
                {% if order.closestFreeDelivery.payment.image.alt %}
                        {{ order.closestFreeDelivery.payment.image.alt }}
                {% endif %}
                {% if order.closestFreeDelivery.payment.image.text %}
                        {{ order.closestFreeDelivery.payment.image.text }}
                {% endif %}
        {% endif %}
        {{ order.closestFreeDelivery.transport.inputId }}
        {{ order.closestFreeDelivery.transport.name }}
        {{ order.closestFreeDelivery.transport.vatRate }}
        {% if order.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if order.closestFreeDelivery.transport.selected %} ... {% endif %}
        {{ order.closestFreeDelivery.transport.price.vatRate }}
        {% if order.closestFreeDelivery.transport.price.discountPercent %}
                {{ order.closestFreeDelivery.transport.price.discountPercent }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.price.discountValidTo %}
                {{ order.closestFreeDelivery.transport.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.price.beforeDiscount %}
        {% endif %}
        {% if order.closestFreeDelivery.transport.price.discount %}
        {% endif %}
        {% if order.closestFreeDelivery.transport.text %}
                {{ order.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.branch %}
                {{ order.closestFreeDelivery.transport.branch.code }}
                {{ order.closestFreeDelivery.transport.branch.name }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.carrier %}
                {{ order.closestFreeDelivery.transport.carrier.code }}
                {{ order.closestFreeDelivery.transport.carrier.name }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.deliveryDate %}
                {{ order.closestFreeDelivery.transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ order.closestFreeDelivery.transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ order.closestFreeDelivery.transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if order.closestFreeDelivery.transport.deliveryDate.timeDelivered %}
                        {{ order.closestFreeDelivery.transport.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if order.closestFreeDelivery.transport.packageType %}
                {{ order.closestFreeDelivery.transport.packageType.code }}
        {% endif %}
        {% if order.closestFreeDelivery.transport.image %}
                {{ order.closestFreeDelivery.transport.image.originalHeight }}
                {{ order.closestFreeDelivery.transport.image.originalWidth }}
                {{ order.closestFreeDelivery.transport.image.url }}
                {% if order.closestFreeDelivery.transport.image.alt %}
                        {{ order.closestFreeDelivery.transport.image.alt }}
                {% endif %}
                {% if order.closestFreeDelivery.transport.image.text %}
                        {{ order.closestFreeDelivery.transport.image.text }}
                {% endif %}
        {% endif %}
        {{ order.closestFreeDelivery.price.vatRate }}
        {{ order.closestFreeDelivery.price.current.currency }}
        {{ order.closestFreeDelivery.price.current.formatted }}
        {{ order.closestFreeDelivery.price.current.value }}
        {% if order.closestFreeDelivery.price.discountPercent %}
                {{ order.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if order.closestFreeDelivery.price.discountValidTo %}
                {{ order.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.closestFreeDelivery.price.beforeDiscount %}
                {{ order.closestFreeDelivery.price.beforeDiscount.currency }}
                {{ order.closestFreeDelivery.price.beforeDiscount.formatted }}
                {{ order.closestFreeDelivery.price.beforeDiscount.value }}
        {% endif %}
        {% if order.closestFreeDelivery.price.discount %}
                {{ order.closestFreeDelivery.price.discount.currency }}
                {{ order.closestFreeDelivery.price.discount.formatted }}
                {{ order.closestFreeDelivery.price.discount.value }}
        {% endif %}
        {% if order.closestFreeDelivery.id %}
                {{ order.closestFreeDelivery.id }}
        {% endif %}
        {% if order.closestFreeDelivery.freeLimit %}
                {{ order.closestFreeDelivery.freeLimit.percent }}
                {{ order.closestFreeDelivery.freeLimit.total.currency }}
                {{ order.closestFreeDelivery.freeLimit.total.formatted }}
                {{ order.closestFreeDelivery.freeLimit.total.value }}
                {{ order.closestFreeDelivery.freeLimit.remains.currency }}
                {{ order.closestFreeDelivery.freeLimit.remains.formatted }}
                {{ order.closestFreeDelivery.freeLimit.remains.value }}
        {% endif %}
{% endif %}

{% if order.parentOrder %}
        {{ order.parentOrder.amountOfItem }}
        {{ order.parentOrder.catalogItemCount }}
        {{ order.parentOrder.catalogItemTotalAmount }}
        {{ order.parentOrder.id }}
        {{ order.parentOrder.loyaltyPoints }}
        {{ order.parentOrder.usableLoyaltyPoints }}
        {{ order.parentOrder.language }}
        {{ order.parentOrder.vs }}
        {% if order.parentOrder.containsItem %} ... {% endif %}
        {% if order.parentOrder.erotic %} ... {% endif %}
        {% if order.parentOrder.externalReviewAllowed %} ... {% endif %}
        {% if order.parentOrder.paid %} ... {% endif %}
        {% if order.parentOrder.useLoyaltyPoints %} ... {% endif %}
        {% if order.parentOrder.useLoyaltyPointsManually %} ... {% endif %}
        {% for accountingDocument in order.parentOrder.accountingDocuments %}
                {{ accountingDocument.code }}
                {{ accountingDocument.date|date('d. m. Y H:i') }}
                {{ accountingDocument.totalPrice.vatRate }}
                {% if accountingDocument.totalPrice.discountPercent %}
                        {{ accountingDocument.totalPrice.discountPercent }}
                {% endif %}
                {% if accountingDocument.totalPrice.discountValidTo %}
                        {{ accountingDocument.totalPrice.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if accountingDocument.totalPrice.beforeDiscount %}
                {% endif %}
                {% if accountingDocument.totalPrice.discount %}
                {% endif %}
                {{ accountingDocument.pdfUrl }}
                {{ accountingDocument.pdfUrl.absolute }}
                {{ accountingDocument.pdfUrl.path }}
        {% endfor %}
        {% if order.parentOrder.address.delivery.city %}
                {{ order.parentOrder.address.delivery.city }}
        {% endif %}
        {% if order.parentOrder.address.delivery.company %}
                {{ order.parentOrder.address.delivery.company }}
        {% endif %}
        {% if order.parentOrder.address.delivery.companyId %}
                {{ order.parentOrder.address.delivery.companyId }}
        {% endif %}
        {% if order.parentOrder.address.delivery.email %}
                {{ order.parentOrder.address.delivery.email }}
        {% endif %}
        {% if order.parentOrder.address.delivery.phone %}
                {{ order.parentOrder.address.delivery.phone }}
        {% endif %}
        {% if order.parentOrder.address.delivery.region %}
                {{ order.parentOrder.address.delivery.region }}
        {% endif %}
        {% if order.parentOrder.address.delivery.street %}
                {{ order.parentOrder.address.delivery.street }}
        {% endif %}
        {% if order.parentOrder.address.delivery.vatId %}
                {{ order.parentOrder.address.delivery.vatId }}
        {% endif %}
        {% if order.parentOrder.address.delivery.zip %}
                {{ order.parentOrder.address.delivery.zip }}
        {% endif %}
        {% if order.parentOrder.address.delivery.country %}
        {% endif %}
        {% if order.parentOrder.address.invoice.city %}
                {{ order.parentOrder.address.invoice.city }}
        {% endif %}
        {% if order.parentOrder.address.invoice.company %}
                {{ order.parentOrder.address.invoice.company }}
        {% endif %}
        {% if order.parentOrder.address.invoice.companyId %}
                {{ order.parentOrder.address.invoice.companyId }}
        {% endif %}
        {% if order.parentOrder.address.invoice.email %}
                {{ order.parentOrder.address.invoice.email }}
        {% endif %}
        {% if order.parentOrder.address.invoice.phone %}
                {{ order.parentOrder.address.invoice.phone }}
        {% endif %}
        {% if order.parentOrder.address.invoice.region %}
                {{ order.parentOrder.address.invoice.region }}
        {% endif %}
        {% if order.parentOrder.address.invoice.street %}
                {{ order.parentOrder.address.invoice.street }}
        {% endif %}
        {% if order.parentOrder.address.invoice.vatId %}
                {{ order.parentOrder.address.invoice.vatId }}
        {% endif %}
        {% if order.parentOrder.address.invoice.zip %}
                {{ order.parentOrder.address.invoice.zip }}
        {% endif %}
        {% if order.parentOrder.address.invoice.country %}
        {% endif %}
        {% for payment in order.parentOrder.availablePaymentMethods %}
                {{ payment.code }}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for payment in order.parentOrder.payments %}
                {{ payment.code }}
                {{ payment.inputId }}
                {{ payment.name }}
                {{ payment.url }}
                {{ payment.vatRate }}
                {% if payment.free %} ... {% endif %}
                {% if payment.inAdvance %} ... {% endif %}
                {% if payment.selected %} ... {% endif %}
                {{ payment.price.vatRate }}
                {% if payment.price.discountPercent %}
                        {{ payment.price.discountPercent }}
                {% endif %}
                {% if payment.price.discountValidTo %}
                        {{ payment.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if payment.price.beforeDiscount %}
                {% endif %}
                {% if payment.price.discount %}
                {% endif %}
                {% if payment.vs %}
                        {{ payment.vs }}
                {% endif %}
                {% if payment.qRCodeHTML %}
                        {{ payment.qRCodeHTML }}
                {% endif %}
                {% if payment.text %}
                        {{ payment.text }}
                {% endif %}
                {% if payment.bankAccount %}
                        {{ payment.bankAccount }}
                        {{ payment.bankAccount.currency }}
                        {% if payment.bankAccount.bic %}
                                {{ payment.bankAccount.bic }}
                        {% endif %}
                        {% if payment.bankAccount.iban %}
                                {{ payment.bankAccount.iban }}
                        {% endif %}
                        {% if payment.bankAccount.local %}
                                {{ payment.bankAccount.local }}
                        {% endif %}
                {% endif %}
                {% if payment.image %}
                        {{ payment.image.originalHeight }}
                        {{ payment.image.originalWidth }}
                        {{ payment.image.url }}
                        {% if payment.image.alt %}
                                {{ payment.image.alt }}
                        {% endif %}
                        {% if payment.image.text %}
                                {{ payment.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for transport in order.parentOrder.availableTransportMethods %}
                {{ transport.inputId }}
                {{ transport.name }}
                {{ transport.vatRate }}
                {% if transport.branchRequired %} ... {% endif %}
                {% if transport.currier %} ... {% endif %}
                {% if transport.dateGuaranteed %} ... {% endif %}
                {% if transport.deliveryAddressRequired %} ... {% endif %}
                {% if transport.deliveryToAddress %} ... {% endif %}
                {% if transport.free %} ... {% endif %}
                {% if transport.pickup %} ... {% endif %}
                {% if transport.selected %} ... {% endif %}
                {{ transport.price.vatRate }}
                {% if transport.price.discountPercent %}
                        {{ transport.price.discountPercent }}
                {% endif %}
                {% if transport.price.discountValidTo %}
                        {{ transport.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if transport.price.beforeDiscount %}
                {% endif %}
                {% if transport.price.discount %}
                {% endif %}
                {% if transport.text %}
                        {{ transport.text }}
                {% endif %}
                {% if transport.branch %}
                        {{ transport.branch.code }}
                        {{ transport.branch.name }}
                {% endif %}
                {% if transport.carrier %}
                        {{ transport.carrier.code }}
                        {{ transport.carrier.name }}
                {% endif %}
                {% if transport.deliveryDate %}
                        {{ transport.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ transport.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if transport.deliveryDate.timeDelivered %}
                                {{ transport.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if transport.packageType %}
                        {{ transport.packageType.code }}
                {% endif %}
                {% if transport.image %}
                        {{ transport.image.originalHeight }}
                        {{ transport.image.originalWidth }}
                        {{ transport.image.url }}
                        {% if transport.image.alt %}
                                {{ transport.image.alt }}
                        {% endif %}
                        {% if transport.image.text %}
                                {{ transport.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ order.parentOrder.delivery.name }}
        {{ order.parentOrder.delivery.vatRate }}
        {{ order.parentOrder.delivery.payment.code }}
        {{ order.parentOrder.delivery.payment.inputId }}
        {{ order.parentOrder.delivery.payment.name }}
        {{ order.parentOrder.delivery.payment.url }}
        {{ order.parentOrder.delivery.payment.vatRate }}
        {% if order.parentOrder.delivery.payment.free %} ... {% endif %}
        {% if order.parentOrder.delivery.payment.inAdvance %} ... {% endif %}
        {% if order.parentOrder.delivery.payment.selected %} ... {% endif %}
        {% if order.parentOrder.delivery.payment.vs %}
                {{ order.parentOrder.delivery.payment.vs }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.qRCodeHTML %}
                {{ order.parentOrder.delivery.payment.qRCodeHTML }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.text %}
                {{ order.parentOrder.delivery.payment.text }}
        {% endif %}
        {% if order.parentOrder.delivery.payment.bankAccount %}
        {% endif %}
        {% if order.parentOrder.delivery.payment.image %}
        {% endif %}
        {{ order.parentOrder.delivery.transport.inputId }}
        {{ order.parentOrder.delivery.transport.name }}
        {{ order.parentOrder.delivery.transport.vatRate }}
        {% if order.parentOrder.delivery.transport.branchRequired %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.currier %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.dateGuaranteed %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.deliveryToAddress %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.free %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.pickup %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.selected %} ... {% endif %}
        {% if order.parentOrder.delivery.transport.text %}
                {{ order.parentOrder.delivery.transport.text }}
        {% endif %}
        {% if order.parentOrder.delivery.transport.branch %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.carrier %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.deliveryDate %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.packageType %}
        {% endif %}
        {% if order.parentOrder.delivery.transport.image %}
        {% endif %}
        {{ order.parentOrder.delivery.price.vatRate }}
        {% if order.parentOrder.delivery.price.discountPercent %}
                {{ order.parentOrder.delivery.price.discountPercent }}
        {% endif %}
        {% if order.parentOrder.delivery.price.discountValidTo %}
                {{ order.parentOrder.delivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.delivery.price.beforeDiscount %}
        {% endif %}
        {% if order.parentOrder.delivery.price.discount %}
        {% endif %}
        {% if order.parentOrder.delivery.id %}
                {{ order.parentOrder.delivery.id }}
        {% endif %}
        {% if order.parentOrder.delivery.freeLimit %}
                {{ order.parentOrder.delivery.freeLimit.percent }}
        {% endif %}
        {% for catalogItem in order.parentOrder.catalogItems %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for catalogItem in order.parentOrder.items %}
                {{ catalogItem.amount }}
                {{ catalogItem.id }}
                {{ catalogItem.name }}
                {{ catalogItem.productName }}
                {{ catalogItem.trackingId }}
                {{ catalogItem.vatRate }}
                {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                {% if catalogItem.catalogItem %} ... {% endif %}
                {% if catalogItem.deleteAllowed %} ... {% endif %}
                {% if catalogItem.discountItem %} ... {% endif %}
                {% if catalogItem.gift %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for catalogItem in catalogItem.children %}
                        {{ catalogItem.amount }}
                        {{ catalogItem.id }}
                        {{ catalogItem.name }}
                        {{ catalogItem.productName }}
                        {{ catalogItem.trackingId }}
                        {{ catalogItem.vatRate }}
                        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
                        {% if catalogItem.catalogItem %} ... {% endif %}
                        {% if catalogItem.deleteAllowed %} ... {% endif %}
                        {% if catalogItem.discountItem %} ... {% endif %}
                        {% if catalogItem.gift %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                        {% endfor %}
                        {% for orderItemError in catalogItem.errors %}
                        {% endfor %}
                        {% for upsell in catalogItem.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.trackingIds }}
                        {% if catalogItem.code %}
                                {{ catalogItem.code }}
                        {% endif %}
                        {% if catalogItem.note %}
                                {{ catalogItem.note }}
                        {% endif %}
                        {% if catalogItem.variantName %}
                                {{ catalogItem.variantName }}
                        {% endif %}
                        {% if catalogItem.image %}
                        {% endif %}
                        {% if catalogItem.item %}
                        {% endif %}
                        {% if catalogItem.product %}
                        {% endif %}
                        {% if catalogItem.unit %}
                        {% endif %}
                        {% if catalogItem.upsell %}
                        {% endif %}
                        {% if catalogItem.variant %}
                        {% endif %}
                {% endfor %}
                {% for orderItemError in catalogItem.errors %}
                        {{ orderItemError.recommendedAmount }}
                        {{ orderItemError.code }}
                        {{ orderItemError.itemName }}
                        {{ orderItemError.message }}
                {% endfor %}
                {{ catalogItem.priceTotal.vatRate }}
                {% if catalogItem.priceTotal.discountPercent %}
                        {{ catalogItem.priceTotal.discountPercent }}
                {% endif %}
                {% if catalogItem.priceTotal.discountValidTo %}
                        {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.priceTotal.beforeDiscount %}
                {% endif %}
                {% if catalogItem.priceTotal.discount %}
                {% endif %}
                {{ catalogItem.price.vatRate }}
                {% if catalogItem.price.discountPercent %}
                        {{ catalogItem.price.discountPercent }}
                {% endif %}
                {% if catalogItem.price.discountValidTo %}
                        {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.price.discount %}
                {% endif %}
                {% for upsell in catalogItem.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.trackingIds }}
                {% if catalogItem.code %}
                        {{ catalogItem.code }}
                {% endif %}
                {% if catalogItem.note %}
                        {{ catalogItem.note }}
                {% endif %}
                {% if catalogItem.variantName %}
                        {{ catalogItem.variantName }}
                {% endif %}
                {% if catalogItem.image %}
                        {{ catalogItem.image.originalHeight }}
                        {{ catalogItem.image.originalWidth }}
                        {{ catalogItem.image.url }}
                        {% if catalogItem.image.alt %}
                                {{ catalogItem.image.alt }}
                        {% endif %}
                        {% if catalogItem.image.text %}
                                {{ catalogItem.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item %}
                        {{ catalogItem.item.id }}
                        {{ catalogItem.item.name }}
                        {{ catalogItem.item.trackingId }}
                        {% if catalogItem.item.digital %} ... {% endif %}
                        {% if catalogItem.item.sellable %} ... {% endif %}
                        {% if catalogItem.item.service %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.availableUpsells %}
                        {% endfor %}
                        {{ catalogItem.item.trackingIds }}
                        {{ catalogItem.item.storageLocations }}
                        {% if catalogItem.item.packageHeight %}
                                {{ catalogItem.item.packageHeight }}
                        {% endif %}
                        {% if catalogItem.item.packageLength %}
                                {{ catalogItem.item.packageLength }}
                        {% endif %}
                        {% if catalogItem.item.packageWeight %}
                                {{ catalogItem.item.packageWeight }}
                        {% endif %}
                        {% if catalogItem.item.packageWidth %}
                                {{ catalogItem.item.packageWidth }}
                        {% endif %}
                        {% if catalogItem.item.code %}
                                {{ catalogItem.item.code }}
                        {% endif %}
                        {% if catalogItem.item.bundle %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery %}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery %}
                        {% endif %}
                        {% if catalogItem.item.packageDimensions %}
                        {% endif %}
                        {% if catalogItem.item.image %}
                        {% endif %}
                        {% if catalogItem.item.price %}
                        {% endif %}
                        {% if catalogItem.item.url %}
                        {% endif %}
                        {% if catalogItem.item.variant %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product %}
                        {{ catalogItem.product.id }}
                        {{ catalogItem.product.name }}
                        {{ catalogItem.product.trackingId }}
                        {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.active %} ... {% endif %}
                        {% if catalogItem.product.compared %} ... {% endif %}
                        {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.flagNew %} ... {% endif %}
                        {% if catalogItem.product.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.videos %}
                        {% endfor %}
                        {{ catalogItem.product.trackingIds }}
                        {% if catalogItem.product.currentSubName %}
                                {{ catalogItem.product.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.nameSuffix %}
                                {{ catalogItem.product.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.nameSupplier %}
                                {{ catalogItem.product.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.text %}
                                {{ catalogItem.product.text }}
                        {% endif %}
                        {% if catalogItem.product.attribute %}
                        {% endif %}
                        {% if catalogItem.product.brand %}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.image %}
                        {% endif %}
                        {% if catalogItem.product.successor %}
                        {% endif %}
                        {% if catalogItem.product.seo %}
                        {% endif %}
                        {% if catalogItem.product.supplier %}
                        {% endif %}
                        {% if catalogItem.product.unit %}
                        {% endif %}
                        {% if catalogItem.product.variant %}
                        {% endif %}
                        {% if catalogItem.product.warranty %}
                        {% endif %}
                        {% if catalogItem.product.contentGrid %}
                                {{ catalogItem.product.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.unit %}
                        {{ catalogItem.unit.name }}
                {% endif %}
                {% if catalogItem.upsell %}
                        {{ catalogItem.upsell.id }}
                        {{ catalogItem.upsell.name }}
                        {% if catalogItem.upsell.inCart %} ... {% endif %}
                        {% if catalogItem.upsell.code %}
                                {{ catalogItem.upsell.code }}
                        {% endif %}
                        {% if catalogItem.upsell.vatRate %}
                                {{ catalogItem.upsell.vatRate }}
                        {% endif %}
                        {% if catalogItem.upsell.image %}
                        {% endif %}
                        {% if catalogItem.upsell.unit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.variant %}
                        {{ catalogItem.variant.id }}
                        {{ catalogItem.variant.name }}
                        {{ catalogItem.variant.trackingId }}
                        {% if catalogItem.variant.active %} ... {% endif %}
                        {% if catalogItem.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.variant.legacyRel %}
                                {{ catalogItem.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.variant.image %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for discountItem in order.parentOrder.discountItems %}
                {{ discountItem.amount }}
                {{ discountItem.id }}
                {{ discountItem.name }}
                {{ discountItem.vatRate }}
                {% if discountItem.amountChangeAllowed %} ... {% endif %}
                {% if discountItem.catalogItem %} ... {% endif %}
                {% if discountItem.deleteAllowed %} ... {% endif %}
                {% if discountItem.discountItem %} ... {% endif %}
                {% for discountItem in discountItem.children %}
                        {{ discountItem.amount }}
                        {{ discountItem.id }}
                        {{ discountItem.name }}
                        {{ discountItem.vatRate }}
                        {% if discountItem.amountChangeAllowed %} ... {% endif %}
                        {% if discountItem.catalogItem %} ... {% endif %}
                        {% if discountItem.deleteAllowed %} ... {% endif %}
                        {% if discountItem.discountItem %} ... {% endif %}
                        {% if discountItem.note %}
                                {{ discountItem.note }}
                        {% endif %}
                        {% if discountItem.trackingId %}
                                {{ discountItem.trackingId }}
                        {% endif %}
                        {% if discountItem.percent %}
                                {{ discountItem.percent }}
                        {% endif %}
                        {% if discountItem.discountCode %}
                        {% endif %}
                        {% if discountItem.voucher %}
                        {% endif %}
                        {% if discountItem.price %}
                        {% endif %}
                        {% if discountItem.priceTotal %}
                        {% endif %}
                        {% if discountItem.unit %}
                        {% endif %}
                {% endfor %}
                {% if discountItem.note %}
                        {{ discountItem.note }}
                {% endif %}
                {% if discountItem.trackingId %}
                        {{ discountItem.trackingId }}
                {% endif %}
                {% if discountItem.percent %}
                        {{ discountItem.percent }}
                {% endif %}
                {% if discountItem.discountCode %}
                        {{ discountItem.discountCode.code }}
                        {{ discountItem.discountCode.name }}
                {% endif %}
                {% if discountItem.voucher %}
                        {{ discountItem.voucher.code }}
                        {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price %}
                        {{ discountItem.price.vatRate }}
                        {% if discountItem.price.discountPercent %}
                                {{ discountItem.price.discountPercent }}
                        {% endif %}
                        {% if discountItem.price.discountValidTo %}
                                {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.price.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.price.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.priceTotal %}
                        {{ discountItem.priceTotal.vatRate }}
                        {% if discountItem.priceTotal.discountPercent %}
                                {{ discountItem.priceTotal.discountPercent }}
                        {% endif %}
                        {% if discountItem.priceTotal.discountValidTo %}
                                {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if discountItem.priceTotal.beforeDiscount %}
                        {% endif %}
                        {% if discountItem.priceTotal.discount %}
                        {% endif %}
                {% endif %}
                {% if discountItem.unit %}
                        {{ discountItem.unit.name }}
                {% endif %}
        {% endfor %}
        {{ order.parentOrder.price.total.currency }}
        {{ order.parentOrder.price.total.formatted }}
        {{ order.parentOrder.price.total.value }}
        {{ order.parentOrder.price.unpaid.currency }}
        {{ order.parentOrder.price.unpaid.formatted }}
        {{ order.parentOrder.price.unpaid.value }}
        {{ order.parentOrder.price.paid.currency }}
        {{ order.parentOrder.price.paid.formatted }}
        {{ order.parentOrder.price.paid.value }}
        {{ order.parentOrder.status.id }}
        {{ order.parentOrder.status.name }}
        {% if order.parentOrder.status.subId %}
                {{ order.parentOrder.status.subId }}
        {% endif %}
        {% for socialProfile in order.parentOrder.shop.socialProfiles %}
                {{ socialProfile.type }}
                {{ socialProfile.url }}
        {% endfor %}
        {% if order.parentOrder.shop.email %}
                {{ order.parentOrder.shop.email }}
        {% endif %}
        {% if order.parentOrder.shop.language %}
                {{ order.parentOrder.shop.language }}
        {% endif %}
        {% if order.parentOrder.shop.name %}
                {{ order.parentOrder.shop.name }}
        {% endif %}
        {% if order.parentOrder.shop.phone %}
                {{ order.parentOrder.shop.phone }}
        {% endif %}
        {% if order.parentOrder.shop.url %}
                {{ order.parentOrder.shop.url }}
        {% endif %}
        {% if order.parentOrder.shop.country %}
                {{ order.parentOrder.shop.country.code }}
                {{ order.parentOrder.shop.country.flagCircleUrl }}
                {{ order.parentOrder.shop.country.flagUrl }}
                {{ order.parentOrder.shop.country.name }}
                {% if order.parentOrder.shop.country.eU %} ... {% endif %}
        {% endif %}
        {% if order.parentOrder.shop.image %}
                {{ order.parentOrder.shop.image.originalHeight }}
                {{ order.parentOrder.shop.image.originalWidth }}
                {{ order.parentOrder.shop.image.url }}
                {% if order.parentOrder.shop.image.alt %}
                        {{ order.parentOrder.shop.image.alt }}
                {% endif %}
                {% if order.parentOrder.shop.image.text %}
                        {{ order.parentOrder.shop.image.text }}
                {% endif %}
        {% endif %}
        {{ order.parentOrder.url }}
        {{ order.parentOrder.url.absolute }}
        {{ order.parentOrder.url.path }}
        {% for giftVoucher in order.parentOrder.purchasedGiftVouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
        {% endfor %}
        {% for giftVoucher in order.parentOrder.vouchers %}
                {{ giftVoucher.code }}
                {{ giftVoucher.name }}
                {{ giftVoucher.validFrom|date('d. m. Y H:i') }}
                {{ giftVoucher.validTo|date('d. m. Y H:i') }}
                {{ giftVoucher.value.currency }}
                {{ giftVoucher.value.formatted }}
        {% endfor %}
        {% if order.parentOrder.code %}
                {{ order.parentOrder.code }}
        {% endif %}
        {% if order.parentOrder.note %}
                {{ order.parentOrder.note }}
        {% endif %}
        {% if order.parentOrder.date %}
                {{ order.parentOrder.date|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.dateInStatus %}
                {{ order.parentOrder.dateInStatus|date('d. m. Y H:i') }}
        {% endif %}
        {% if order.parentOrder.customer %}
                {{ order.parentOrder.customer.id }}
                {{ order.parentOrder.customer.userPointsAvailable }}
                {{ order.parentOrder.customer.userPointsExpiringOn }}
                {{ order.parentOrder.customer.userPointsTotal }}
                {{ order.parentOrder.customer.name }}
                {{ order.parentOrder.customer.dateCreated|date('d. m. Y H:i') }}
                {% if order.parentOrder.customer.productOnWishlist %} ... {% endif %}
                {% if order.parentOrder.customer.wholesale %} ... {% endif %}
                {% for accountingDocument in order.parentOrder.customer.receipts %}
                        {{ accountingDocument.code }}
                        {{ accountingDocument.date|date('d. m. Y H:i') }}
                {% endfor %}
                {% for analyticsReport in order.parentOrder.customer.analyticReports %}
                        {{ analyticsReport.name }}
                {% endfor %}
                {% for order in order.parentOrder.customer.orders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for order in order.parentOrder.customer.childOrders %}
                        {{ order.amountOfItem }}
                        {{ order.catalogItemCount }}
                        {{ order.catalogItemTotalAmount }}
                        {{ order.id }}
                        {{ order.loyaltyPoints }}
                        {{ order.usableLoyaltyPoints }}
                        {{ order.language }}
                        {{ order.vs }}
                        {% if order.containsItem %} ... {% endif %}
                        {% if order.erotic %} ... {% endif %}
                        {% if order.externalReviewAllowed %} ... {% endif %}
                        {% if order.paid %} ... {% endif %}
                        {% if order.useLoyaltyPoints %} ... {% endif %}
                        {% if order.useLoyaltyPointsManually %} ... {% endif %}
                        {% for accountingDocument in order.accountingDocuments %}
                        {% endfor %}
                        {% for payment in order.availablePaymentMethods %}
                        {% endfor %}
                        {% for payment in order.payments %}
                        {% endfor %}
                        {% for transport in order.availableTransportMethods %}
                        {% endfor %}
                        {% for catalogItem in order.catalogItems %}
                        {% endfor %}
                        {% for catalogItem in order.items %}
                        {% endfor %}
                        {% for discountItem in order.discountItems %}
                        {% endfor %}
                        {% for giftVoucher in order.purchasedGiftVouchers %}
                        {% endfor %}
                        {% for giftVoucher in order.vouchers %}
                        {% endfor %}
                        {% if order.code %}
                                {{ order.code }}
                        {% endif %}
                        {% if order.note %}
                                {{ order.note }}
                        {% endif %}
                        {% if order.date %}
                                {{ order.date|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.dateInStatus %}
                                {{ order.dateInStatus|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if order.closestFreeDelivery %}
                        {% endif %}
                        {% if order.package %}
                        {% endif %}
                {% endfor %}
                {% for userPointChange in order.parentOrder.customer.userPointChanges %}
                        {{ userPointChange.amount }}
                        {{ userPointChange.text }}
                        {{ userPointChange.date|date('d. m. Y H:i') }}
                        {% if userPointChange.dateExpire %}
                                {{ userPointChange.dateExpire|date('d. m. Y H:i') }}
                        {% endif %}
                {% endfor %}
                {{ order.parentOrder.customer.alternativeAddresses }}
                {% if order.parentOrder.customer.loyaltyCard %}
                        {{ order.parentOrder.customer.loyaltyCard }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder.closestFreeDelivery %}
                {{ order.parentOrder.closestFreeDelivery.name }}
                {{ order.parentOrder.closestFreeDelivery.vatRate }}
                {{ order.parentOrder.closestFreeDelivery.payment.code }}
                {{ order.parentOrder.closestFreeDelivery.payment.inputId }}
                {{ order.parentOrder.closestFreeDelivery.payment.name }}
                {{ order.parentOrder.closestFreeDelivery.payment.url }}
                {{ order.parentOrder.closestFreeDelivery.payment.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.vs %}
                        {{ order.parentOrder.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ order.parentOrder.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.text %}
                        {{ order.parentOrder.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ order.parentOrder.closestFreeDelivery.transport.inputId }}
                {{ order.parentOrder.closestFreeDelivery.transport.name }}
                {{ order.parentOrder.closestFreeDelivery.transport.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.text %}
                        {{ order.parentOrder.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ order.parentOrder.closestFreeDelivery.price.vatRate }}
                {% if order.parentOrder.closestFreeDelivery.price.discountPercent %}
                        {{ order.parentOrder.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.price.discountValidTo %}
                        {{ order.parentOrder.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.id %}
                        {{ order.parentOrder.closestFreeDelivery.id }}
                {% endif %}
                {% if order.parentOrder.closestFreeDelivery.freeLimit %}
                        {{ order.parentOrder.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if order.parentOrder.package %}
                {{ order.parentOrder.package.trackingUrl }}
                {{ order.parentOrder.package.date|date('d. m. Y H:i') }}
                {% if order.parentOrder.package.status.delivered %} ... {% endif %}
                {% if order.parentOrder.package.status.deposited %} ... {% endif %}
                {% if order.parentOrder.package.status.inTransit %} ... {% endif %}
                {% if order.parentOrder.package.status.returned %} ... {% endif %}
                {% if order.parentOrder.package.code %}
                        {{ order.parentOrder.package.code }}
                {% endif %}
        {% endif %}
{% endif %}

{% if order.package %}
        {{ order.package.trackingUrl }}
        {{ order.package.date|date('d. m. Y H:i') }}
        {% if order.package.status.delivered %} ... {% endif %}
        {% if order.package.status.deposited %} ... {% endif %}
        {% if order.package.status.inTransit %} ... {% endif %}
        {% if order.package.status.returned %} ... {% endif %}
        {% if order.package.code %}
                {{ order.package.code }}
        {% endif %}
{% endif %}

Order/DiscountCode

Attributy objektu Order/DiscountCode

Název

Typ

Popis

code

string

Kód

name

string

Název slevového kódu

Příklady:

{{ discountcode.code }}
{{ discountcode.name }}

Order/FreeLimit

Attributy objektu Order/FreeLimit

Název

Typ

Popis

percent

int

Kolik procent je dosaženo z celku

total

PriceValue

Hodnota objednávky dosažení

remains

PriceValue

Kolik zbývá do dosažení dopravy zdarma

Příklady:

{{ freelimit.percent }}
{{ freelimit.total.currency }}
{{ freelimit.total.formatted }}
{{ freelimit.total.value }}
{{ freelimit.remains.currency }}
{{ freelimit.remains.formatted }}
{{ freelimit.remains.value }}

Order/Item/CatalogItem

Attributy objektu Order/Item/CatalogItem

Název

Typ

Popis

amount

int

Množství

id

int

Id

name

string

Název položky

productName

string

Název produktu

trackingId

string

ID používané ve feedech a měřících skriptech

vatRate

float

Sazba DPH (%)

amountChangeAllowed

bool

Je povolena změna množství?

catalogItem

bool

Je položkou katalogu?

deleteAllowed

bool

Je povoleno odebrání z objednávky?

discountItem

bool

Je položka slevou?

gift

bool

Je položka dárkem?

availableUpsellGroups

AvailableUpsellGroup[]

Dostupné skupiny upsellu

children

Order/Item/CatalogItem[] | Order/Item/DiscountItem[]

Podřazené položky (například díly kompletu)

errors

Order/Item/OrderItemError[]

Chyby položky (nedostupné kusy apod)

priceTotal

Price

Cena celkem

price

Price

Cena za kus

availableUpsells

Upsell[]

Dostupné položky pro upsell

trackingIds

array

ID používané ve feedech a měřících skriptech (varianta a produkt

code

string | null

Kód položky

note

string | null

Poznámka

variantName

string | null

Název varianty

image

Image | null

Obrázek položky

item

Item | null

Položka

product

Product | null

Produkt

unit

Unit | null

Množstevní jednotka

upsell

Upsell | null

Je položka upsellem?

variant

Variant | null

Varianta

Příklady:

{{ catalogitem.amount }}
{{ catalogitem.id }}
{{ catalogitem.name }}
{{ catalogitem.productName }}
{{ catalogitem.trackingId }}
{{ catalogitem.vatRate }}
{% if catalogitem.amountChangeAllowed %} ... {% endif %}
{% if catalogitem.catalogItem %} ... {% endif %}
{% if catalogitem.deleteAllowed %} ... {% endif %}
{% if catalogitem.discountItem %} ... {% endif %}
{% if catalogitem.gift %} ... {% endif %}

{% for availableUpsellGroup in catalogitem.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}

{% for catalogItem in catalogitem.children %}
        {{ catalogItem.amount }}
        {{ catalogItem.id }}
        {{ catalogItem.name }}
        {{ catalogItem.productName }}
        {{ catalogItem.trackingId }}
        {{ catalogItem.vatRate }}
        {% if catalogItem.amountChangeAllowed %} ... {% endif %}
        {% if catalogItem.catalogItem %} ... {% endif %}
        {% if catalogItem.deleteAllowed %} ... {% endif %}
        {% if catalogItem.discountItem %} ... {% endif %}
        {% if catalogItem.gift %} ... {% endif %}
        {% for availableUpsellGroup in catalogItem.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for orderItemError in catalogItem.errors %}
                {{ orderItemError.recommendedAmount }}
                {{ orderItemError.code }}
                {{ orderItemError.itemName }}
                {{ orderItemError.message }}
        {% endfor %}
        {{ catalogItem.priceTotal.vatRate }}
        {{ catalogItem.priceTotal.current.currency }}
        {{ catalogItem.priceTotal.current.formatted }}
        {{ catalogItem.priceTotal.current.value }}
        {% if catalogItem.priceTotal.discountPercent %}
                {{ catalogItem.priceTotal.discountPercent }}
        {% endif %}
        {% if catalogItem.priceTotal.discountValidTo %}
                {{ catalogItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.priceTotal.beforeDiscount %}
                {{ catalogItem.priceTotal.beforeDiscount.currency }}
                {{ catalogItem.priceTotal.beforeDiscount.formatted }}
                {{ catalogItem.priceTotal.beforeDiscount.value }}
        {% endif %}
        {% if catalogItem.priceTotal.discount %}
                {{ catalogItem.priceTotal.discount.currency }}
                {{ catalogItem.priceTotal.discount.formatted }}
                {{ catalogItem.priceTotal.discount.value }}
        {% endif %}
        {{ catalogItem.price.vatRate }}
        {{ catalogItem.price.current.currency }}
        {{ catalogItem.price.current.formatted }}
        {{ catalogItem.price.current.value }}
        {% if catalogItem.price.discountPercent %}
                {{ catalogItem.price.discountPercent }}
        {% endif %}
        {% if catalogItem.price.discountValidTo %}
                {{ catalogItem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogItem.price.beforeDiscount %}
                {{ catalogItem.price.beforeDiscount.currency }}
                {{ catalogItem.price.beforeDiscount.formatted }}
                {{ catalogItem.price.beforeDiscount.value }}
        {% endif %}
        {% if catalogItem.price.discount %}
                {{ catalogItem.price.discount.currency }}
                {{ catalogItem.price.discount.formatted }}
                {{ catalogItem.price.discount.value }}
        {% endif %}
        {% for upsell in catalogItem.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogItem.trackingIds }}
        {% if catalogItem.code %}
                {{ catalogItem.code }}
        {% endif %}
        {% if catalogItem.note %}
                {{ catalogItem.note }}
        {% endif %}
        {% if catalogItem.variantName %}
                {{ catalogItem.variantName }}
        {% endif %}
        {% if catalogItem.image %}
                {{ catalogItem.image.originalHeight }}
                {{ catalogItem.image.originalWidth }}
                {{ catalogItem.image.url }}
                {% if catalogItem.image.alt %}
                        {{ catalogItem.image.alt }}
                {% endif %}
                {% if catalogItem.image.text %}
                        {{ catalogItem.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogItem.item %}
                {{ catalogItem.item.id }}
                {{ catalogItem.item.name }}
                {{ catalogItem.item.trackingId }}
                {% if catalogItem.item.digital %} ... {% endif %}
                {% if catalogItem.item.sellable %} ... {% endif %}
                {% if catalogItem.item.service %} ... {% endif %}
                {{ catalogItem.item.availability.availableAmount }}
                {{ catalogItem.item.availability.availableAmountInShowroom }}
                {{ catalogItem.item.availability.availableAmountInStockroom }}
                {{ catalogItem.item.availability.availableAmountInStorageCenter }}
                {{ catalogItem.item.availability.hours }}
                {{ catalogItem.item.availability.totalAmount }}
                {% if catalogItem.item.availability.inShowroom %} ... {% endif %}
                {% if catalogItem.item.availability.inStock %} ... {% endif %}
                {% if catalogItem.item.availability.preorder %} ... {% endif %}
                {% if catalogItem.item.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in catalogItem.item.availability.deliveryOptions %}
                {% endfor %}
                {% if catalogItem.item.availability.text %}
                        {{ catalogItem.item.availability.text }}
                {% endif %}
                {% if catalogItem.item.availability.dateExpected %}
                        {{ catalogItem.item.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.item.availability.deliveryOption %}
                {% endif %}
                {% for availableUpsellGroup in catalogItem.item.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.product.id }}
                {{ catalogItem.item.product.name }}
                {{ catalogItem.item.product.trackingId }}
                {{ catalogItem.item.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.item.product.active %} ... {% endif %}
                {% if catalogItem.item.product.compared %} ... {% endif %}
                {% if catalogItem.item.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.item.product.flagNew %} ... {% endif %}
                {% if catalogItem.item.product.flagPromo %} ... {% endif %}
                {% if catalogItem.item.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.item.product.flagSellout %} ... {% endif %}
                {% if catalogItem.item.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.item.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.item.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.item.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.item.product.categories %}
                {% endfor %}
                {% for category in catalogItem.item.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.item.product.files %}
                {% endfor %}
                {% for image in catalogItem.item.product.images %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.item.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.item.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.item.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.item.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.item.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.item.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.item.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.item.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.item.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.item.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.item.product.videos %}
                {% endfor %}
                {{ catalogItem.item.product.trackingIds }}
                {% if catalogItem.item.product.currentSubName %}
                        {{ catalogItem.item.product.currentSubName }}
                {% endif %}
                {% if catalogItem.item.product.nameSuffix %}
                        {{ catalogItem.item.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.item.product.nameSupplier %}
                        {{ catalogItem.item.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.item.product.text %}
                        {{ catalogItem.item.product.text }}
                {% endif %}
                {% if catalogItem.item.product.attribute %}
                {% endif %}
                {% if catalogItem.item.product.brand %}
                {% endif %}
                {% if catalogItem.item.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.item.product.image %}
                {% endif %}
                {% if catalogItem.item.product.successor %}
                {% endif %}
                {% if catalogItem.item.product.seo %}
                {% endif %}
                {% if catalogItem.item.product.supplier %}
                {% endif %}
                {% if catalogItem.item.product.unit %}
                {% endif %}
                {% if catalogItem.item.product.variant %}
                {% endif %}
                {% if catalogItem.item.product.warranty %}
                {% endif %}
                {% if catalogItem.item.product.contentGrid %}
                        {{ catalogItem.item.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.item.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.item.trackingIds }}
                {{ catalogItem.item.storageLocations }}
                {% if catalogItem.item.packageHeight %}
                        {{ catalogItem.item.packageHeight }}
                {% endif %}
                {% if catalogItem.item.packageLength %}
                        {{ catalogItem.item.packageLength }}
                {% endif %}
                {% if catalogItem.item.packageWeight %}
                        {{ catalogItem.item.packageWeight }}
                {% endif %}
                {% if catalogItem.item.packageWidth %}
                        {{ catalogItem.item.packageWidth }}
                {% endif %}
                {% if catalogItem.item.code %}
                        {{ catalogItem.item.code }}
                {% endif %}
                {% if catalogItem.item.bundle %}
                        {% if catalogItem.item.bundle.multiPack %} ... {% endif %}
                        {% if catalogItem.item.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.cheapestDelivery %}
                        {{ catalogItem.item.cheapestDelivery.inputId }}
                        {{ catalogItem.item.cheapestDelivery.name }}
                        {{ catalogItem.item.cheapestDelivery.vatRate }}
                        {% if catalogItem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.currier %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.free %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.pickup %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.selected %} ... {% endif %}
                        {% if catalogItem.item.cheapestDelivery.text %}
                                {{ catalogItem.item.cheapestDelivery.text }}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.branch %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.carrier %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.deliveryDate %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.packageType %}
                        {% endif %}
                        {% if catalogItem.item.cheapestDelivery.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.freeDelivery %}
                        {{ catalogItem.item.freeDelivery.name }}
                        {{ catalogItem.item.freeDelivery.vatRate }}
                        {% if catalogItem.item.freeDelivery.id %}
                                {{ catalogItem.item.freeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.freeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.closestFreeDelivery %}
                        {{ catalogItem.item.closestFreeDelivery.name }}
                        {{ catalogItem.item.closestFreeDelivery.vatRate }}
                        {% if catalogItem.item.closestFreeDelivery.id %}
                                {{ catalogItem.item.closestFreeDelivery.id }}
                        {% endif %}
                        {% if catalogItem.item.closestFreeDelivery.freeLimit %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.packageDimensions %}
                        {{ catalogItem.item.packageDimensions }}
                        {{ catalogItem.item.packageDimensions.height }}
                        {{ catalogItem.item.packageDimensions.length }}
                        {{ catalogItem.item.packageDimensions.width }}
                        {{ catalogItem.item.packageDimensions.unit }}
                {% endif %}
                {% if catalogItem.item.image %}
                        {{ catalogItem.item.image.originalHeight }}
                        {{ catalogItem.item.image.originalWidth }}
                        {{ catalogItem.item.image.url }}
                        {% if catalogItem.item.image.alt %}
                                {{ catalogItem.item.image.alt }}
                        {% endif %}
                        {% if catalogItem.item.image.text %}
                                {{ catalogItem.item.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.price %}
                        {{ catalogItem.item.price.vatRate }}
                        {% if catalogItem.item.price.discountPercent %}
                                {{ catalogItem.item.price.discountPercent }}
                        {% endif %}
                        {% if catalogItem.item.price.discountValidTo %}
                                {{ catalogItem.item.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogItem.item.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogItem.item.price.discount %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.item.url %}
                        {{ catalogItem.item.url }}
                        {{ catalogItem.item.url.absolute }}
                        {{ catalogItem.item.url.path }}
                {% endif %}
                {% if catalogItem.item.variant %}
                        {{ catalogItem.item.variant.id }}
                        {{ catalogItem.item.variant.name }}
                        {{ catalogItem.item.variant.trackingId }}
                        {% if catalogItem.item.variant.active %} ... {% endif %}
                        {% if catalogItem.item.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.item.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.item.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.item.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.item.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.item.variant.legacyRel %}
                                {{ catalogItem.item.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.item.variant.image %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogItem.product %}
                {{ catalogItem.product.id }}
                {{ catalogItem.product.name }}
                {{ catalogItem.product.trackingId }}
                {{ catalogItem.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.product.active %} ... {% endif %}
                {% if catalogItem.product.compared %} ... {% endif %}
                {% if catalogItem.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.product.flagNew %} ... {% endif %}
                {% if catalogItem.product.flagPromo %} ... {% endif %}
                {% if catalogItem.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.product.flagSellout %} ... {% endif %}
                {% if catalogItem.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.category.id }}
                {{ catalogItem.product.category.productCount }}
                {{ catalogItem.product.category.productInStockCount }}
                {{ catalogItem.product.category.totalStockQuantity }}
                {{ catalogItem.product.category.headline }}
                {{ catalogItem.product.category.menuName }}
                {{ catalogItem.product.category.name }}
                {% if catalogItem.product.category.flagErotic %} ... {% endif %}
                {% if catalogItem.product.category.flagImportant %} ... {% endif %}
                {% if catalogItem.product.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.product.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.product.category.videos %}
                {% endfor %}
                {{ catalogItem.product.category.pathIds }}
                {{ catalogItem.product.category.pathNames }}
                {{ catalogItem.product.category.templateAttribute }}
                {% if catalogItem.product.category.subHeadline %}
                        {{ catalogItem.product.category.subHeadline }}
                {% endif %}
                {% if catalogItem.product.category.text %}
                        {{ catalogItem.product.category.text }}
                {% endif %}
                {% if catalogItem.product.category.parent %}
                {% endif %}
                {% if catalogItem.product.category.image %}
                {% endif %}
                {% if catalogItem.product.category.contentGrid %}
                        {{ catalogItem.product.category.contentGrid }}
                {% endif %}
                {% for category in catalogItem.product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogItem.product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogItem.product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.item.id }}
                {{ catalogItem.product.item.name }}
                {{ catalogItem.product.item.trackingId }}
                {% if catalogItem.product.item.digital %} ... {% endif %}
                {% if catalogItem.product.item.sellable %} ... {% endif %}
                {% if catalogItem.product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.product.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.product.item.trackingIds }}
                {{ catalogItem.product.item.storageLocations }}
                {% if catalogItem.product.item.packageHeight %}
                        {{ catalogItem.product.item.packageHeight }}
                {% endif %}
                {% if catalogItem.product.item.packageLength %}
                        {{ catalogItem.product.item.packageLength }}
                {% endif %}
                {% if catalogItem.product.item.packageWeight %}
                        {{ catalogItem.product.item.packageWeight }}
                {% endif %}
                {% if catalogItem.product.item.packageWidth %}
                        {{ catalogItem.product.item.packageWidth }}
                {% endif %}
                {% if catalogItem.product.item.code %}
                        {{ catalogItem.product.item.code }}
                {% endif %}
                {% if catalogItem.product.item.bundle %}
                {% endif %}
                {% if catalogItem.product.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.product.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.product.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.product.item.image %}
                {% endif %}
                {% if catalogItem.product.item.price %}
                {% endif %}
                {% if catalogItem.product.item.url %}
                {% endif %}
                {% if catalogItem.product.item.variant %}
                {% endif %}
                {% for label in catalogItem.product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogItem.product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogItem.product.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.successor %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.rating.count }}
                {% if catalogItem.product.rating.voted %} ... {% endif %}
                {% if catalogItem.product.rating.average %}
                        {{ catalogItem.product.rating.average }}
                {% endif %}
                {% for upsell in catalogItem.product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.url }}
                {{ catalogItem.product.url.absolute }}
                {{ catalogItem.product.url.path }}
                {% for variantChoiceStep in catalogItem.product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogItem.product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.variantType.id }}
                {{ catalogItem.product.variantType.name }}
                {% for video in catalogItem.product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.product.trackingIds }}
                {% if catalogItem.product.currentSubName %}
                        {{ catalogItem.product.currentSubName }}
                {% endif %}
                {% if catalogItem.product.nameSuffix %}
                        {{ catalogItem.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.product.nameSupplier %}
                        {{ catalogItem.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.product.text %}
                        {{ catalogItem.product.text }}
                {% endif %}
                {% if catalogItem.product.attribute %}
                        {{ catalogItem.product.attribute.name }}
                        {{ catalogItem.product.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogItem.product.attribute.values %}
                        {% endfor %}
                        {% if catalogItem.product.attribute.description %}
                                {{ catalogItem.product.attribute.description }}
                        {% endif %}
                        {% if catalogItem.product.attribute.group %}
                        {% endif %}
                        {% if catalogItem.product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.brand %}
                        {{ catalogItem.product.brand.id }}
                        {{ catalogItem.product.brand.name }}
                        {% if catalogItem.product.brand.flagImportant %} ... {% endif %}
                        {% for category in catalogItem.product.brand.categories %}
                        {% endfor %}
                        {% if catalogItem.product.brand.code %}
                                {{ catalogItem.product.brand.code }}
                        {% endif %}
                        {% if catalogItem.product.brand.web %}
                                {{ catalogItem.product.brand.web }}
                        {% endif %}
                        {% if catalogItem.product.brand.text %}
                                {{ catalogItem.product.brand.text }}
                        {% endif %}
                        {% if catalogItem.product.brand.image %}
                        {% endif %}
                        {% if catalogItem.product.brand.seo %}
                        {% endif %}
                        {% if catalogItem.product.brand.contentGrid %}
                                {{ catalogItem.product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.imageForEnumValueId %}
                        {{ catalogItem.product.imageForEnumValueId.originalHeight }}
                        {{ catalogItem.product.imageForEnumValueId.originalWidth }}
                        {{ catalogItem.product.imageForEnumValueId.url }}
                        {% if catalogItem.product.imageForEnumValueId.alt %}
                                {{ catalogItem.product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogItem.product.imageForEnumValueId.text %}
                                {{ catalogItem.product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.image %}
                        {{ catalogItem.product.image.originalHeight }}
                        {{ catalogItem.product.image.originalWidth }}
                        {{ catalogItem.product.image.url }}
                        {% if catalogItem.product.image.alt %}
                                {{ catalogItem.product.image.alt }}
                        {% endif %}
                        {% if catalogItem.product.image.text %}
                                {{ catalogItem.product.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.successor %}
                        {{ catalogItem.product.successor.id }}
                        {{ catalogItem.product.successor.name }}
                        {{ catalogItem.product.successor.trackingId }}
                        {{ catalogItem.product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if catalogItem.product.successor.active %} ... {% endif %}
                        {% if catalogItem.product.successor.compared %} ... {% endif %}
                        {% if catalogItem.product.successor.differentVariantPrices %} ... {% endif %}
                        {% if catalogItem.product.successor.flagNew %} ... {% endif %}
                        {% if catalogItem.product.successor.flagPromo %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSecondHand %} ... {% endif %}
                        {% if catalogItem.product.successor.flagSellout %} ... {% endif %}
                        {% if catalogItem.product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if catalogItem.product.successor.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in catalogItem.product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in catalogItem.product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.categories %}
                        {% endfor %}
                        {% for category in catalogItem.product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in catalogItem.product.successor.files %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.images360 %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.currentImages %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in catalogItem.product.successor.otherImages %}
                        {% endfor %}
                        {% for label in catalogItem.product.successor.labels %}
                        {% endfor %}
                        {% for productEnumValue in catalogItem.product.successor.enumValues %}
                        {% endfor %}
                        {% for product in catalogItem.product.successor.packTemplateProducts %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in catalogItem.product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variants %}
                        {% endfor %}
                        {% for variant in catalogItem.product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in catalogItem.product.successor.videos %}
                        {% endfor %}
                        {{ catalogItem.product.successor.trackingIds }}
                        {% if catalogItem.product.successor.currentSubName %}
                                {{ catalogItem.product.successor.currentSubName }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSuffix %}
                                {{ catalogItem.product.successor.nameSuffix }}
                        {% endif %}
                        {% if catalogItem.product.successor.nameSupplier %}
                                {{ catalogItem.product.successor.nameSupplier }}
                        {% endif %}
                        {% if catalogItem.product.successor.text %}
                                {{ catalogItem.product.successor.text }}
                        {% endif %}
                        {% if catalogItem.product.successor.attribute %}
                        {% endif %}
                        {% if catalogItem.product.successor.brand %}
                        {% endif %}
                        {% if catalogItem.product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if catalogItem.product.successor.image %}
                        {% endif %}
                        {% if catalogItem.product.successor.seo %}
                        {% endif %}
                        {% if catalogItem.product.successor.supplier %}
                        {% endif %}
                        {% if catalogItem.product.successor.unit %}
                        {% endif %}
                        {% if catalogItem.product.successor.variant %}
                        {% endif %}
                        {% if catalogItem.product.successor.warranty %}
                        {% endif %}
                        {% if catalogItem.product.successor.contentGrid %}
                                {{ catalogItem.product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.seo %}
                        {% if catalogItem.product.seo.description %}
                                {{ catalogItem.product.seo.description }}
                        {% endif %}
                        {% if catalogItem.product.seo.keywords %}
                                {{ catalogItem.product.seo.keywords }}
                        {% endif %}
                        {% if catalogItem.product.seo.title %}
                                {{ catalogItem.product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.supplier %}
                        {{ catalogItem.product.supplier.id }}
                        {{ catalogItem.product.supplier.name }}
                {% endif %}
                {% if catalogItem.product.unit %}
                        {{ catalogItem.product.unit.name }}
                {% endif %}
                {% if catalogItem.product.variant %}
                        {{ catalogItem.product.variant.id }}
                        {{ catalogItem.product.variant.name }}
                        {{ catalogItem.product.variant.trackingId }}
                        {% if catalogItem.product.variant.active %} ... {% endif %}
                        {% if catalogItem.product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogItem.product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogItem.product.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogItem.product.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogItem.product.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogItem.product.variant.legacyRel %}
                                {{ catalogItem.product.variant.legacyRel }}
                        {% endif %}
                        {% if catalogItem.product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogItem.product.warranty %}
                        {{ catalogItem.product.warranty.months }}
                {% endif %}
                {% if catalogItem.product.contentGrid %}
                        {{ catalogItem.product.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogItem.unit %}
                {{ catalogItem.unit.name }}
        {% endif %}
        {% if catalogItem.upsell %}
                {{ catalogItem.upsell.id }}
                {{ catalogItem.upsell.name }}
                {% if catalogItem.upsell.inCart %} ... {% endif %}
                {{ catalogItem.upsell.category.id }}
                {{ catalogItem.upsell.category.productCount }}
                {{ catalogItem.upsell.category.productInStockCount }}
                {{ catalogItem.upsell.category.totalStockQuantity }}
                {{ catalogItem.upsell.category.headline }}
                {{ catalogItem.upsell.category.menuName }}
                {{ catalogItem.upsell.category.name }}
                {% if catalogItem.upsell.category.flagErotic %} ... {% endif %}
                {% if catalogItem.upsell.category.flagImportant %} ... {% endif %}
                {% if catalogItem.upsell.category.noFollow %} ... {% endif %}
                {% for category in catalogItem.upsell.category.subcategories %}
                {% endfor %}
                {% for video in catalogItem.upsell.category.videos %}
                {% endfor %}
                {{ catalogItem.upsell.category.pathIds }}
                {{ catalogItem.upsell.category.pathNames }}
                {{ catalogItem.upsell.category.templateAttribute }}
                {% if catalogItem.upsell.category.subHeadline %}
                        {{ catalogItem.upsell.category.subHeadline }}
                {% endif %}
                {% if catalogItem.upsell.category.text %}
                        {{ catalogItem.upsell.category.text }}
                {% endif %}
                {% if catalogItem.upsell.category.parent %}
                {% endif %}
                {% if catalogItem.upsell.category.image %}
                {% endif %}
                {% if catalogItem.upsell.category.contentGrid %}
                        {{ catalogItem.upsell.category.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.price.vatRate }}
                {% if catalogItem.upsell.price.discountPercent %}
                        {{ catalogItem.upsell.price.discountPercent }}
                {% endif %}
                {% if catalogItem.upsell.price.discountValidTo %}
                        {{ catalogItem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogItem.upsell.price.beforeDiscount %}
                {% endif %}
                {% if catalogItem.upsell.price.discount %}
                {% endif %}
                {{ catalogItem.upsell.product.id }}
                {{ catalogItem.upsell.product.name }}
                {{ catalogItem.upsell.product.trackingId }}
                {{ catalogItem.upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.upsell.product.active %} ... {% endif %}
                {% if catalogItem.upsell.product.compared %} ... {% endif %}
                {% if catalogItem.upsell.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.upsell.product.flagNew %} ... {% endif %}
                {% if catalogItem.upsell.product.flagPromo %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.upsell.product.flagSellout %} ... {% endif %}
                {% if catalogItem.upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.categories %}
                {% endfor %}
                {% for category in catalogItem.upsell.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.upsell.product.files %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.upsell.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.upsell.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.upsell.product.videos %}
                {% endfor %}
                {{ catalogItem.upsell.product.trackingIds }}
                {% if catalogItem.upsell.product.currentSubName %}
                        {{ catalogItem.upsell.product.currentSubName }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSuffix %}
                        {{ catalogItem.upsell.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.upsell.product.nameSupplier %}
                        {{ catalogItem.upsell.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.upsell.product.text %}
                        {{ catalogItem.upsell.product.text }}
                {% endif %}
                {% if catalogItem.upsell.product.attribute %}
                {% endif %}
                {% if catalogItem.upsell.product.brand %}
                {% endif %}
                {% if catalogItem.upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.upsell.product.image %}
                {% endif %}
                {% if catalogItem.upsell.product.successor %}
                {% endif %}
                {% if catalogItem.upsell.product.seo %}
                {% endif %}
                {% if catalogItem.upsell.product.supplier %}
                {% endif %}
                {% if catalogItem.upsell.product.unit %}
                {% endif %}
                {% if catalogItem.upsell.product.variant %}
                {% endif %}
                {% if catalogItem.upsell.product.warranty %}
                {% endif %}
                {% if catalogItem.upsell.product.contentGrid %}
                        {{ catalogItem.upsell.product.contentGrid }}
                {% endif %}
                {{ catalogItem.upsell.group.id }}
                {{ catalogItem.upsell.group.requiredNoteMaximumLength }}
                {{ catalogItem.upsell.group.name }}
                {% if catalogItem.upsell.group.requiredNote %} ... {% endif %}
                {% if catalogItem.upsell.group.requiredUpload %} ... {% endif %}
                {% if catalogItem.upsell.group.singleSelection %} ... {% endif %}
                {% if catalogItem.upsell.group.text %}
                        {{ catalogItem.upsell.group.text }}
                {% endif %}
                {% if catalogItem.upsell.group.uploadInput %}
                        {{ catalogItem.upsell.group.uploadInput }}
                {% endif %}
                {% if catalogItem.upsell.code %}
                        {{ catalogItem.upsell.code }}
                {% endif %}
                {% if catalogItem.upsell.vatRate %}
                        {{ catalogItem.upsell.vatRate }}
                {% endif %}
                {% if catalogItem.upsell.image %}
                        {{ catalogItem.upsell.image.originalHeight }}
                        {{ catalogItem.upsell.image.originalWidth }}
                        {{ catalogItem.upsell.image.url }}
                        {% if catalogItem.upsell.image.alt %}
                                {{ catalogItem.upsell.image.alt }}
                        {% endif %}
                        {% if catalogItem.upsell.image.text %}
                                {{ catalogItem.upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogItem.upsell.unit %}
                        {{ catalogItem.upsell.unit.name }}
                {% endif %}
        {% endif %}
        {% if catalogItem.variant %}
                {{ catalogItem.variant.id }}
                {{ catalogItem.variant.name }}
                {{ catalogItem.variant.trackingId }}
                {% if catalogItem.variant.active %} ... {% endif %}
                {% if catalogItem.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogItem.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogItem.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.item.id }}
                {{ catalogItem.variant.item.name }}
                {{ catalogItem.variant.item.trackingId }}
                {% if catalogItem.variant.item.digital %} ... {% endif %}
                {% if catalogItem.variant.item.sellable %} ... {% endif %}
                {% if catalogItem.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogItem.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogItem.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogItem.variant.item.trackingIds }}
                {{ catalogItem.variant.item.storageLocations }}
                {% if catalogItem.variant.item.packageHeight %}
                        {{ catalogItem.variant.item.packageHeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageLength %}
                        {{ catalogItem.variant.item.packageLength }}
                {% endif %}
                {% if catalogItem.variant.item.packageWeight %}
                        {{ catalogItem.variant.item.packageWeight }}
                {% endif %}
                {% if catalogItem.variant.item.packageWidth %}
                        {{ catalogItem.variant.item.packageWidth }}
                {% endif %}
                {% if catalogItem.variant.item.code %}
                        {{ catalogItem.variant.item.code }}
                {% endif %}
                {% if catalogItem.variant.item.bundle %}
                {% endif %}
                {% if catalogItem.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogItem.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogItem.variant.item.image %}
                {% endif %}
                {% if catalogItem.variant.item.price %}
                {% endif %}
                {% if catalogItem.variant.item.url %}
                {% endif %}
                {{ catalogItem.variant.product.id }}
                {{ catalogItem.variant.product.name }}
                {{ catalogItem.variant.product.trackingId }}
                {{ catalogItem.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogItem.variant.product.active %} ... {% endif %}
                {% if catalogItem.variant.product.compared %} ... {% endif %}
                {% if catalogItem.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogItem.variant.product.flagNew %} ... {% endif %}
                {% if catalogItem.variant.product.flagPromo %} ... {% endif %}
                {% if catalogItem.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogItem.variant.product.flagSellout %} ... {% endif %}
                {% if catalogItem.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogItem.variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogItem.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogItem.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogItem.variant.product.categories %}
                {% endfor %}
                {% for category in catalogItem.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogItem.variant.product.files %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogItem.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogItem.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogItem.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogItem.variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogItem.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogItem.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogItem.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogItem.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogItem.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogItem.variant.product.videos %}
                {% endfor %}
                {{ catalogItem.variant.product.trackingIds }}
                {% if catalogItem.variant.product.currentSubName %}
                        {{ catalogItem.variant.product.currentSubName }}
                {% endif %}
                {% if catalogItem.variant.product.nameSuffix %}
                        {{ catalogItem.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogItem.variant.product.nameSupplier %}
                        {{ catalogItem.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogItem.variant.product.text %}
                        {{ catalogItem.variant.product.text }}
                {% endif %}
                {% if catalogItem.variant.product.attribute %}
                {% endif %}
                {% if catalogItem.variant.product.brand %}
                {% endif %}
                {% if catalogItem.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogItem.variant.product.image %}
                {% endif %}
                {% if catalogItem.variant.product.successor %}
                {% endif %}
                {% if catalogItem.variant.product.seo %}
                {% endif %}
                {% if catalogItem.variant.product.supplier %}
                {% endif %}
                {% if catalogItem.variant.product.unit %}
                {% endif %}
                {% if catalogItem.variant.product.warranty %}
                {% endif %}
                {% if catalogItem.variant.product.contentGrid %}
                        {{ catalogItem.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogItem.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogItem.variant.url }}
                {{ catalogItem.variant.url.absolute }}
                {{ catalogItem.variant.url.path }}
                {% if catalogItem.variant.legacyRel %}
                        {{ catalogItem.variant.legacyRel }}
                {% endif %}
                {% if catalogItem.variant.image %}
                        {{ catalogItem.variant.image.originalHeight }}
                        {{ catalogItem.variant.image.originalWidth }}
                        {{ catalogItem.variant.image.url }}
                        {% if catalogItem.variant.image.alt %}
                                {{ catalogItem.variant.image.alt }}
                        {% endif %}
                        {% if catalogItem.variant.image.text %}
                                {{ catalogItem.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for orderItemError in catalogitem.errors %}
        {{ orderItemError.recommendedAmount }}
        {{ orderItemError.code }}
        {{ orderItemError.itemName }}
        {{ orderItemError.message }}
{% endfor %}
{{ catalogitem.priceTotal.vatRate }}
{{ catalogitem.priceTotal.current.currency }}
{{ catalogitem.priceTotal.current.formatted }}
{{ catalogitem.priceTotal.current.value }}
{% if catalogitem.priceTotal.discountPercent %}
        {{ catalogitem.priceTotal.discountPercent }}
{% endif %}
{% if catalogitem.priceTotal.discountValidTo %}
        {{ catalogitem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if catalogitem.priceTotal.beforeDiscount %}
        {{ catalogitem.priceTotal.beforeDiscount.currency }}
        {{ catalogitem.priceTotal.beforeDiscount.formatted }}
        {{ catalogitem.priceTotal.beforeDiscount.value }}
{% endif %}
{% if catalogitem.priceTotal.discount %}
        {{ catalogitem.priceTotal.discount.currency }}
        {{ catalogitem.priceTotal.discount.formatted }}
        {{ catalogitem.priceTotal.discount.value }}
{% endif %}
{{ catalogitem.price.vatRate }}
{{ catalogitem.price.current.currency }}
{{ catalogitem.price.current.formatted }}
{{ catalogitem.price.current.value }}
{% if catalogitem.price.discountPercent %}
        {{ catalogitem.price.discountPercent }}
{% endif %}
{% if catalogitem.price.discountValidTo %}
        {{ catalogitem.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if catalogitem.price.beforeDiscount %}
        {{ catalogitem.price.beforeDiscount.currency }}
        {{ catalogitem.price.beforeDiscount.formatted }}
        {{ catalogitem.price.beforeDiscount.value }}
{% endif %}
{% if catalogitem.price.discount %}
        {{ catalogitem.price.discount.currency }}
        {{ catalogitem.price.discount.formatted }}
        {{ catalogitem.price.discount.value }}
{% endif %}

{% for upsell in catalogitem.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ catalogitem.trackingIds }}

{% if catalogitem.code %}
        {{ catalogitem.code }}
{% endif %}

{% if catalogitem.note %}
        {{ catalogitem.note }}
{% endif %}

{% if catalogitem.variantName %}
        {{ catalogitem.variantName }}
{% endif %}

{% if catalogitem.image %}
        {{ catalogitem.image.originalHeight }}
        {{ catalogitem.image.originalWidth }}
        {{ catalogitem.image.url }}
        {% if catalogitem.image.alt %}
                {{ catalogitem.image.alt }}
        {% endif %}
        {% if catalogitem.image.text %}
                {{ catalogitem.image.text }}
        {% endif %}
{% endif %}

{% if catalogitem.item %}
        {{ catalogitem.item.id }}
        {{ catalogitem.item.name }}
        {{ catalogitem.item.trackingId }}
        {% if catalogitem.item.digital %} ... {% endif %}
        {% if catalogitem.item.sellable %} ... {% endif %}
        {% if catalogitem.item.service %} ... {% endif %}
        {{ catalogitem.item.availability.availableAmount }}
        {{ catalogitem.item.availability.availableAmountInShowroom }}
        {{ catalogitem.item.availability.availableAmountInStockroom }}
        {{ catalogitem.item.availability.availableAmountInStorageCenter }}
        {{ catalogitem.item.availability.hours }}
        {{ catalogitem.item.availability.totalAmount }}
        {% if catalogitem.item.availability.inShowroom %} ... {% endif %}
        {% if catalogitem.item.availability.inStock %} ... {% endif %}
        {% if catalogitem.item.availability.preorder %} ... {% endif %}
        {% if catalogitem.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in catalogitem.item.availability.deliveryOptions %}
                {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
                {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                {% if deliveryOption.timeDelivered %}
                        {{ deliveryOption.timeDelivered }}
                {% endif %}
        {% endfor %}
        {% if catalogitem.item.availability.text %}
                {{ catalogitem.item.availability.text }}
        {% endif %}
        {% if catalogitem.item.availability.dateExpected %}
                {{ catalogitem.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.item.availability.deliveryOption %}
                {{ catalogitem.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                {{ catalogitem.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
                {{ catalogitem.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                {% if catalogitem.item.availability.deliveryOption.timeDelivered %}
                        {{ catalogitem.item.availability.deliveryOption.timeDelivered }}
                {% endif %}
        {% endif %}
        {% for availableUpsellGroup in catalogitem.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.id }}
        {{ catalogitem.item.product.name }}
        {{ catalogitem.item.product.trackingId }}
        {{ catalogitem.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.item.product.active %} ... {% endif %}
        {% if catalogitem.item.product.compared %} ... {% endif %}
        {% if catalogitem.item.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.item.product.flagNew %} ... {% endif %}
        {% if catalogitem.item.product.flagPromo %} ... {% endif %}
        {% if catalogitem.item.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.item.product.flagSellout %} ... {% endif %}
        {% if catalogitem.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in catalogitem.item.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.item.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.category.id }}
        {{ catalogitem.item.product.category.productCount }}
        {{ catalogitem.item.product.category.productInStockCount }}
        {{ catalogitem.item.product.category.totalStockQuantity }}
        {{ catalogitem.item.product.category.headline }}
        {{ catalogitem.item.product.category.menuName }}
        {{ catalogitem.item.product.category.name }}
        {% if catalogitem.item.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.item.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.item.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.item.product.category.subcategories %}
        {% endfor %}
        {% for video in catalogitem.item.product.category.videos %}
        {% endfor %}
        {{ catalogitem.item.product.category.pathIds }}
        {{ catalogitem.item.product.category.pathNames }}
        {{ catalogitem.item.product.category.templateAttribute }}
        {% if catalogitem.item.product.category.subHeadline %}
                {{ catalogitem.item.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.item.product.category.text %}
                {{ catalogitem.item.product.category.text }}
        {% endif %}
        {% if catalogitem.item.product.category.parent %}
        {% endif %}
        {% if catalogitem.item.product.category.image %}
        {% endif %}
        {% if catalogitem.item.product.category.contentGrid %}
                {{ catalogitem.item.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.item.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.item.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.item.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.item.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for label in catalogitem.item.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.item.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.item.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.rating.count }}
        {% if catalogitem.item.product.rating.voted %} ... {% endif %}
        {% if catalogitem.item.product.rating.average %}
                {{ catalogitem.item.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.item.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.url }}
        {{ catalogitem.item.product.url.absolute }}
        {{ catalogitem.item.product.url.path }}
        {% for variantChoiceStep in catalogitem.item.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.item.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.item.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.item.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.variantType.id }}
        {{ catalogitem.item.product.variantType.name }}
        {% for video in catalogitem.item.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.product.trackingIds }}
        {% if catalogitem.item.product.currentSubName %}
                {{ catalogitem.item.product.currentSubName }}
        {% endif %}
        {% if catalogitem.item.product.nameSuffix %}
                {{ catalogitem.item.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.item.product.nameSupplier %}
                {{ catalogitem.item.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.item.product.text %}
                {{ catalogitem.item.product.text }}
        {% endif %}
        {% if catalogitem.item.product.attribute %}
                {{ catalogitem.item.product.attribute.name }}
                {{ catalogitem.item.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.item.product.attribute.values %}
                {% endfor %}
                {% if catalogitem.item.product.attribute.description %}
                        {{ catalogitem.item.product.attribute.description }}
                {% endif %}
                {% if catalogitem.item.product.attribute.group %}
                {% endif %}
                {% if catalogitem.item.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.brand %}
                {{ catalogitem.item.product.brand.id }}
                {{ catalogitem.item.product.brand.name }}
                {% if catalogitem.item.product.brand.flagImportant %} ... {% endif %}
                {% for category in catalogitem.item.product.brand.categories %}
                {% endfor %}
                {% if catalogitem.item.product.brand.code %}
                        {{ catalogitem.item.product.brand.code }}
                {% endif %}
                {% if catalogitem.item.product.brand.web %}
                        {{ catalogitem.item.product.brand.web }}
                {% endif %}
                {% if catalogitem.item.product.brand.text %}
                        {{ catalogitem.item.product.brand.text }}
                {% endif %}
                {% if catalogitem.item.product.brand.image %}
                {% endif %}
                {% if catalogitem.item.product.brand.seo %}
                {% endif %}
                {% if catalogitem.item.product.brand.contentGrid %}
                        {{ catalogitem.item.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.imageForEnumValueId %}
                {{ catalogitem.item.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.item.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.item.product.imageForEnumValueId.url }}
                {% if catalogitem.item.product.imageForEnumValueId.alt %}
                        {{ catalogitem.item.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.item.product.imageForEnumValueId.text %}
                        {{ catalogitem.item.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.image %}
                {{ catalogitem.item.product.image.originalHeight }}
                {{ catalogitem.item.product.image.originalWidth }}
                {{ catalogitem.item.product.image.url }}
                {% if catalogitem.item.product.image.alt %}
                        {{ catalogitem.item.product.image.alt }}
                {% endif %}
                {% if catalogitem.item.product.image.text %}
                        {{ catalogitem.item.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.successor %}
                {{ catalogitem.item.product.successor.id }}
                {{ catalogitem.item.product.successor.name }}
                {{ catalogitem.item.product.successor.trackingId }}
                {{ catalogitem.item.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.item.product.successor.active %} ... {% endif %}
                {% if catalogitem.item.product.successor.compared %} ... {% endif %}
                {% if catalogitem.item.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.item.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.item.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.item.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogitem.item.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.item.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.item.product.successor.categories %}
                {% endfor %}
                {% for category in catalogitem.item.product.successor.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.item.product.successor.files %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.images %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.images360 %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.currentImages %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.product.successor.otherImages %}
                {% endfor %}
                {% for label in catalogitem.item.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in catalogitem.item.product.successor.enumValues %}
                {% endfor %}
                {% for product in catalogitem.item.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.item.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.item.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.item.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.item.product.successor.variants %}
                {% endfor %}
                {% for variant in catalogitem.item.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.item.product.successor.videos %}
                {% endfor %}
                {{ catalogitem.item.product.successor.trackingIds }}
                {% if catalogitem.item.product.successor.currentSubName %}
                        {{ catalogitem.item.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.item.product.successor.nameSuffix %}
                        {{ catalogitem.item.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.item.product.successor.nameSupplier %}
                        {{ catalogitem.item.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.item.product.successor.text %}
                        {{ catalogitem.item.product.successor.text }}
                {% endif %}
                {% if catalogitem.item.product.successor.attribute %}
                {% endif %}
                {% if catalogitem.item.product.successor.brand %}
                {% endif %}
                {% if catalogitem.item.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.item.product.successor.image %}
                {% endif %}
                {% if catalogitem.item.product.successor.seo %}
                {% endif %}
                {% if catalogitem.item.product.successor.supplier %}
                {% endif %}
                {% if catalogitem.item.product.successor.unit %}
                {% endif %}
                {% if catalogitem.item.product.successor.variant %}
                {% endif %}
                {% if catalogitem.item.product.successor.warranty %}
                {% endif %}
                {% if catalogitem.item.product.successor.contentGrid %}
                        {{ catalogitem.item.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.seo %}
                {% if catalogitem.item.product.seo.description %}
                        {{ catalogitem.item.product.seo.description }}
                {% endif %}
                {% if catalogitem.item.product.seo.keywords %}
                        {{ catalogitem.item.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.item.product.seo.title %}
                        {{ catalogitem.item.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.supplier %}
                {{ catalogitem.item.product.supplier.id }}
                {{ catalogitem.item.product.supplier.name }}
        {% endif %}
        {% if catalogitem.item.product.unit %}
                {{ catalogitem.item.product.unit.name }}
        {% endif %}
        {% if catalogitem.item.product.variant %}
                {{ catalogitem.item.product.variant.id }}
                {{ catalogitem.item.product.variant.name }}
                {{ catalogitem.item.product.variant.trackingId }}
                {% if catalogitem.item.product.variant.active %} ... {% endif %}
                {% if catalogitem.item.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.item.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in catalogitem.item.product.variant.enumValues %}
                {% endfor %}
                {% for image in catalogitem.item.product.variant.images %}
                {% endfor %}
                {% for upsell in catalogitem.item.product.variant.availableUpsells %}
                {% endfor %}
                {% if catalogitem.item.product.variant.legacyRel %}
                        {{ catalogitem.item.product.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.item.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.product.warranty %}
                {{ catalogitem.item.product.warranty.months }}
        {% endif %}
        {% if catalogitem.item.product.contentGrid %}
                {{ catalogitem.item.product.contentGrid }}
        {% endif %}
        {% for upsell in catalogitem.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.item.trackingIds }}
        {{ catalogitem.item.storageLocations }}
        {% if catalogitem.item.packageHeight %}
                {{ catalogitem.item.packageHeight }}
        {% endif %}
        {% if catalogitem.item.packageLength %}
                {{ catalogitem.item.packageLength }}
        {% endif %}
        {% if catalogitem.item.packageWeight %}
                {{ catalogitem.item.packageWeight }}
        {% endif %}
        {% if catalogitem.item.packageWidth %}
                {{ catalogitem.item.packageWidth }}
        {% endif %}
        {% if catalogitem.item.code %}
                {{ catalogitem.item.code }}
        {% endif %}
        {% if catalogitem.item.bundle %}
                {% if catalogitem.item.bundle.multiPack %} ... {% endif %}
                {% if catalogitem.item.bundle.price %}
                        {{ catalogitem.item.bundle.price.vatRate }}
                        {% if catalogitem.item.bundle.price.discountPercent %}
                                {{ catalogitem.item.bundle.price.discountPercent }}
                        {% endif %}
                        {% if catalogitem.item.bundle.price.discountValidTo %}
                                {{ catalogitem.item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if catalogitem.item.bundle.price.beforeDiscount %}
                        {% endif %}
                        {% if catalogitem.item.bundle.price.discount %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.cheapestDelivery %}
                {{ catalogitem.item.cheapestDelivery.inputId }}
                {{ catalogitem.item.cheapestDelivery.name }}
                {{ catalogitem.item.cheapestDelivery.vatRate }}
                {% if catalogitem.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.currier %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.free %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if catalogitem.item.cheapestDelivery.selected %} ... {% endif %}
                {{ catalogitem.item.cheapestDelivery.price.vatRate }}
                {% if catalogitem.item.cheapestDelivery.price.discountPercent %}
                        {{ catalogitem.item.cheapestDelivery.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.price.discountValidTo %}
                        {{ catalogitem.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.price.discount %}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.text %}
                        {{ catalogitem.item.cheapestDelivery.text }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.branch %}
                        {{ catalogitem.item.cheapestDelivery.branch.code }}
                        {{ catalogitem.item.cheapestDelivery.branch.name }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.carrier %}
                        {{ catalogitem.item.cheapestDelivery.carrier.code }}
                        {{ catalogitem.item.cheapestDelivery.carrier.name }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.deliveryDate %}
                        {{ catalogitem.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                        {{ catalogitem.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                        {{ catalogitem.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                        {% if catalogitem.item.cheapestDelivery.deliveryDate.timeDelivered %}
                                {{ catalogitem.item.cheapestDelivery.deliveryDate.timeDelivered }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.packageType %}
                        {{ catalogitem.item.cheapestDelivery.packageType.code }}
                {% endif %}
                {% if catalogitem.item.cheapestDelivery.image %}
                        {{ catalogitem.item.cheapestDelivery.image.originalHeight }}
                        {{ catalogitem.item.cheapestDelivery.image.originalWidth }}
                        {{ catalogitem.item.cheapestDelivery.image.url }}
                        {% if catalogitem.item.cheapestDelivery.image.alt %}
                                {{ catalogitem.item.cheapestDelivery.image.alt }}
                        {% endif %}
                        {% if catalogitem.item.cheapestDelivery.image.text %}
                                {{ catalogitem.item.cheapestDelivery.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.freeDelivery %}
                {{ catalogitem.item.freeDelivery.name }}
                {{ catalogitem.item.freeDelivery.vatRate }}
                {{ catalogitem.item.freeDelivery.payment.code }}
                {{ catalogitem.item.freeDelivery.payment.inputId }}
                {{ catalogitem.item.freeDelivery.payment.name }}
                {{ catalogitem.item.freeDelivery.payment.url }}
                {{ catalogitem.item.freeDelivery.payment.vatRate }}
                {% if catalogitem.item.freeDelivery.payment.free %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.payment.inAdvance %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.payment.selected %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.payment.vs %}
                        {{ catalogitem.item.freeDelivery.payment.vs }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.qRCodeHTML %}
                        {{ catalogitem.item.freeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.text %}
                        {{ catalogitem.item.freeDelivery.payment.text }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.bankAccount %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.payment.image %}
                {% endif %}
                {{ catalogitem.item.freeDelivery.transport.inputId }}
                {{ catalogitem.item.freeDelivery.transport.name }}
                {{ catalogitem.item.freeDelivery.transport.vatRate }}
                {% if catalogitem.item.freeDelivery.transport.branchRequired %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.currier %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.free %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.pickup %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.selected %} ... {% endif %}
                {% if catalogitem.item.freeDelivery.transport.text %}
                        {{ catalogitem.item.freeDelivery.transport.text }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.branch %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.carrier %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.packageType %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.transport.image %}
                {% endif %}
                {{ catalogitem.item.freeDelivery.price.vatRate }}
                {% if catalogitem.item.freeDelivery.price.discountPercent %}
                        {{ catalogitem.item.freeDelivery.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.price.discountValidTo %}
                        {{ catalogitem.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.price.discount %}
                {% endif %}
                {% if catalogitem.item.freeDelivery.id %}
                        {{ catalogitem.item.freeDelivery.id }}
                {% endif %}
                {% if catalogitem.item.freeDelivery.freeLimit %}
                        {{ catalogitem.item.freeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.closestFreeDelivery %}
                {{ catalogitem.item.closestFreeDelivery.name }}
                {{ catalogitem.item.closestFreeDelivery.vatRate }}
                {{ catalogitem.item.closestFreeDelivery.payment.code }}
                {{ catalogitem.item.closestFreeDelivery.payment.inputId }}
                {{ catalogitem.item.closestFreeDelivery.payment.name }}
                {{ catalogitem.item.closestFreeDelivery.payment.url }}
                {{ catalogitem.item.closestFreeDelivery.payment.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.payment.free %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.selected %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.vs %}
                        {{ catalogitem.item.closestFreeDelivery.payment.vs }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.qRCodeHTML %}
                        {{ catalogitem.item.closestFreeDelivery.payment.qRCodeHTML }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.text %}
                        {{ catalogitem.item.closestFreeDelivery.payment.text }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.bankAccount %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.payment.image %}
                {% endif %}
                {{ catalogitem.item.closestFreeDelivery.transport.inputId }}
                {{ catalogitem.item.closestFreeDelivery.transport.name }}
                {{ catalogitem.item.closestFreeDelivery.transport.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.currier %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.free %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.pickup %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.selected %} ... {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.text %}
                        {{ catalogitem.item.closestFreeDelivery.transport.text }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.branch %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.carrier %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.deliveryDate %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.packageType %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.transport.image %}
                {% endif %}
                {{ catalogitem.item.closestFreeDelivery.price.vatRate }}
                {% if catalogitem.item.closestFreeDelivery.price.discountPercent %}
                        {{ catalogitem.item.closestFreeDelivery.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.price.discountValidTo %}
                        {{ catalogitem.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.price.discount %}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.id %}
                        {{ catalogitem.item.closestFreeDelivery.id }}
                {% endif %}
                {% if catalogitem.item.closestFreeDelivery.freeLimit %}
                        {{ catalogitem.item.closestFreeDelivery.freeLimit.percent }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.packageDimensions %}
                {{ catalogitem.item.packageDimensions }}
                {{ catalogitem.item.packageDimensions.height }}
                {{ catalogitem.item.packageDimensions.length }}
                {{ catalogitem.item.packageDimensions.width }}
                {{ catalogitem.item.packageDimensions.unit }}
        {% endif %}
        {% if catalogitem.item.image %}
                {{ catalogitem.item.image.originalHeight }}
                {{ catalogitem.item.image.originalWidth }}
                {{ catalogitem.item.image.url }}
                {% if catalogitem.item.image.alt %}
                        {{ catalogitem.item.image.alt }}
                {% endif %}
                {% if catalogitem.item.image.text %}
                        {{ catalogitem.item.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.price %}
                {{ catalogitem.item.price.vatRate }}
                {{ catalogitem.item.price.current.currency }}
                {{ catalogitem.item.price.current.formatted }}
                {{ catalogitem.item.price.current.value }}
                {% if catalogitem.item.price.discountPercent %}
                        {{ catalogitem.item.price.discountPercent }}
                {% endif %}
                {% if catalogitem.item.price.discountValidTo %}
                        {{ catalogitem.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.item.price.beforeDiscount %}
                        {{ catalogitem.item.price.beforeDiscount.currency }}
                        {{ catalogitem.item.price.beforeDiscount.formatted }}
                        {{ catalogitem.item.price.beforeDiscount.value }}
                {% endif %}
                {% if catalogitem.item.price.discount %}
                        {{ catalogitem.item.price.discount.currency }}
                        {{ catalogitem.item.price.discount.formatted }}
                        {{ catalogitem.item.price.discount.value }}
                {% endif %}
        {% endif %}
        {% if catalogitem.item.url %}
                {{ catalogitem.item.url }}
                {{ catalogitem.item.url.absolute }}
                {{ catalogitem.item.url.path }}
        {% endif %}
        {% if catalogitem.item.variant %}
                {{ catalogitem.item.variant.id }}
                {{ catalogitem.item.variant.name }}
                {{ catalogitem.item.variant.trackingId }}
                {% if catalogitem.item.variant.active %} ... {% endif %}
                {% if catalogitem.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.item.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogitem.item.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.item.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.item.variant.product.id }}
                {{ catalogitem.item.variant.product.name }}
                {{ catalogitem.item.variant.product.trackingId }}
                {{ catalogitem.item.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.item.variant.product.active %} ... {% endif %}
                {% if catalogitem.item.variant.product.compared %} ... {% endif %}
                {% if catalogitem.item.variant.product.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagNew %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagPromo %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagSecondHand %} ... {% endif %}
                {% if catalogitem.item.variant.product.flagSellout %} ... {% endif %}
                {% if catalogitem.item.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.item.variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogitem.item.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.item.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.item.variant.product.categories %}
                {% endfor %}
                {% for category in catalogitem.item.variant.product.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.item.variant.product.files %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.images %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.images360 %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.currentImages %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.item.variant.product.otherImages %}
                {% endfor %}
                {% for label in catalogitem.item.variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in catalogitem.item.variant.product.enumValues %}
                {% endfor %}
                {% for product in catalogitem.item.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.item.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.item.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.item.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.item.variant.product.variants %}
                {% endfor %}
                {% for variant in catalogitem.item.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.item.variant.product.videos %}
                {% endfor %}
                {{ catalogitem.item.variant.product.trackingIds }}
                {% if catalogitem.item.variant.product.currentSubName %}
                        {{ catalogitem.item.variant.product.currentSubName }}
                {% endif %}
                {% if catalogitem.item.variant.product.nameSuffix %}
                        {{ catalogitem.item.variant.product.nameSuffix }}
                {% endif %}
                {% if catalogitem.item.variant.product.nameSupplier %}
                        {{ catalogitem.item.variant.product.nameSupplier }}
                {% endif %}
                {% if catalogitem.item.variant.product.text %}
                        {{ catalogitem.item.variant.product.text }}
                {% endif %}
                {% if catalogitem.item.variant.product.attribute %}
                {% endif %}
                {% if catalogitem.item.variant.product.brand %}
                {% endif %}
                {% if catalogitem.item.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.item.variant.product.image %}
                {% endif %}
                {% if catalogitem.item.variant.product.successor %}
                {% endif %}
                {% if catalogitem.item.variant.product.seo %}
                {% endif %}
                {% if catalogitem.item.variant.product.supplier %}
                {% endif %}
                {% if catalogitem.item.variant.product.unit %}
                {% endif %}
                {% if catalogitem.item.variant.product.warranty %}
                {% endif %}
                {% if catalogitem.item.variant.product.contentGrid %}
                        {{ catalogitem.item.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in catalogitem.item.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.item.variant.url }}
                {{ catalogitem.item.variant.url.absolute }}
                {{ catalogitem.item.variant.url.path }}
                {% if catalogitem.item.variant.legacyRel %}
                        {{ catalogitem.item.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.item.variant.image %}
                        {{ catalogitem.item.variant.image.originalHeight }}
                        {{ catalogitem.item.variant.image.originalWidth }}
                        {{ catalogitem.item.variant.image.url }}
                        {% if catalogitem.item.variant.image.alt %}
                                {{ catalogitem.item.variant.image.alt }}
                        {% endif %}
                        {% if catalogitem.item.variant.image.text %}
                                {{ catalogitem.item.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endif %}

{% if catalogitem.product %}
        {{ catalogitem.product.id }}
        {{ catalogitem.product.name }}
        {{ catalogitem.product.trackingId }}
        {{ catalogitem.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.product.active %} ... {% endif %}
        {% if catalogitem.product.compared %} ... {% endif %}
        {% if catalogitem.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.product.flagNew %} ... {% endif %}
        {% if catalogitem.product.flagPromo %} ... {% endif %}
        {% if catalogitem.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.product.flagSellout %} ... {% endif %}
        {% if catalogitem.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in catalogitem.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                        {{ attributeInstance.group.id }}
                {% endif %}
                {% if attributeInstance.image %}
                        {{ attributeInstance.image.originalHeight }}
                        {{ attributeInstance.image.originalWidth }}
                        {{ attributeInstance.image.url }}
                        {% if attributeInstance.image.alt %}
                                {{ attributeInstance.image.alt }}
                        {% endif %}
                        {% if attributeInstance.image.text %}
                                {{ attributeInstance.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.category.id }}
        {{ catalogitem.product.category.productCount }}
        {{ catalogitem.product.category.productInStockCount }}
        {{ catalogitem.product.category.totalStockQuantity }}
        {{ catalogitem.product.category.headline }}
        {{ catalogitem.product.category.menuName }}
        {{ catalogitem.product.category.name }}
        {% if catalogitem.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.product.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.category.url }}
        {{ catalogitem.product.category.url.absolute }}
        {{ catalogitem.product.category.url.path }}
        {{ catalogitem.product.category.variantType.id }}
        {{ catalogitem.product.category.variantType.name }}
        {% for video in catalogitem.product.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.category.pathIds }}
        {{ catalogitem.product.category.pathNames }}
        {{ catalogitem.product.category.templateAttribute }}
        {% if catalogitem.product.category.subHeadline %}
                {{ catalogitem.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.product.category.text %}
                {{ catalogitem.product.category.text }}
        {% endif %}
        {% if catalogitem.product.category.parent %}
                {{ catalogitem.product.category.parent.id }}
                {{ catalogitem.product.category.parent.productCount }}
                {{ catalogitem.product.category.parent.productInStockCount }}
                {{ catalogitem.product.category.parent.totalStockQuantity }}
                {{ catalogitem.product.category.parent.headline }}
                {{ catalogitem.product.category.parent.menuName }}
                {{ catalogitem.product.category.parent.name }}
                {% if catalogitem.product.category.parent.flagErotic %} ... {% endif %}
                {% if catalogitem.product.category.parent.flagImportant %} ... {% endif %}
                {% if catalogitem.product.category.parent.noFollow %} ... {% endif %}
                {% for category in catalogitem.product.category.parent.subcategories %}
                {% endfor %}
                {% for video in catalogitem.product.category.parent.videos %}
                {% endfor %}
                {{ catalogitem.product.category.parent.pathIds }}
                {{ catalogitem.product.category.parent.pathNames }}
                {{ catalogitem.product.category.parent.templateAttribute }}
                {% if catalogitem.product.category.parent.subHeadline %}
                        {{ catalogitem.product.category.parent.subHeadline }}
                {% endif %}
                {% if catalogitem.product.category.parent.text %}
                        {{ catalogitem.product.category.parent.text }}
                {% endif %}
                {% if catalogitem.product.category.parent.image %}
                {% endif %}
                {% if catalogitem.product.category.parent.contentGrid %}
                        {{ catalogitem.product.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.category.image %}
                {{ catalogitem.product.category.image.originalHeight }}
                {{ catalogitem.product.category.image.originalWidth }}
                {{ catalogitem.product.category.image.url }}
                {% if catalogitem.product.category.image.alt %}
                        {{ catalogitem.product.category.image.alt }}
                {% endif %}
                {% if catalogitem.product.category.image.text %}
                        {{ catalogitem.product.category.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.category.contentGrid %}
                {{ catalogitem.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.usage.archive %} ... {% endif %}
                {% if file.usage.graphic %} ... {% endif %}
                {% if file.usage.manual %} ... {% endif %}
                {% if file.usage.other %} ... {% endif %}
                {% if file.usage.sound %} ... {% endif %}
                {% if file.usage.specification %} ... {% endif %}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.item.id }}
        {{ catalogitem.product.item.name }}
        {{ catalogitem.product.item.trackingId }}
        {% if catalogitem.product.item.digital %} ... {% endif %}
        {% if catalogitem.product.item.sellable %} ... {% endif %}
        {% if catalogitem.product.item.service %} ... {% endif %}
        {{ catalogitem.product.item.availability.availableAmount }}
        {{ catalogitem.product.item.availability.availableAmountInShowroom }}
        {{ catalogitem.product.item.availability.availableAmountInStockroom }}
        {{ catalogitem.product.item.availability.availableAmountInStorageCenter }}
        {{ catalogitem.product.item.availability.hours }}
        {{ catalogitem.product.item.availability.totalAmount }}
        {% if catalogitem.product.item.availability.inShowroom %} ... {% endif %}
        {% if catalogitem.product.item.availability.inStock %} ... {% endif %}
        {% if catalogitem.product.item.availability.preorder %} ... {% endif %}
        {% if catalogitem.product.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in catalogitem.product.item.availability.deliveryOptions %}
        {% endfor %}
        {% if catalogitem.product.item.availability.text %}
                {{ catalogitem.product.item.availability.text }}
        {% endif %}
        {% if catalogitem.product.item.availability.dateExpected %}
                {{ catalogitem.product.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.product.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in catalogitem.product.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for upsell in catalogitem.product.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.item.trackingIds }}
        {{ catalogitem.product.item.storageLocations }}
        {% if catalogitem.product.item.packageHeight %}
                {{ catalogitem.product.item.packageHeight }}
        {% endif %}
        {% if catalogitem.product.item.packageLength %}
                {{ catalogitem.product.item.packageLength }}
        {% endif %}
        {% if catalogitem.product.item.packageWeight %}
                {{ catalogitem.product.item.packageWeight }}
        {% endif %}
        {% if catalogitem.product.item.packageWidth %}
                {{ catalogitem.product.item.packageWidth }}
        {% endif %}
        {% if catalogitem.product.item.code %}
                {{ catalogitem.product.item.code }}
        {% endif %}
        {% if catalogitem.product.item.bundle %}
                {% if catalogitem.product.item.bundle.multiPack %} ... {% endif %}
                {% if catalogitem.product.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.cheapestDelivery %}
                {{ catalogitem.product.item.cheapestDelivery.inputId }}
                {{ catalogitem.product.item.cheapestDelivery.name }}
                {{ catalogitem.product.item.cheapestDelivery.vatRate }}
                {% if catalogitem.product.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.currier %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.free %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.selected %} ... {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.text %}
                        {{ catalogitem.product.item.cheapestDelivery.text }}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.branch %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if catalogitem.product.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.freeDelivery %}
                {{ catalogitem.product.item.freeDelivery.name }}
                {{ catalogitem.product.item.freeDelivery.vatRate }}
                {% if catalogitem.product.item.freeDelivery.id %}
                        {{ catalogitem.product.item.freeDelivery.id }}
                {% endif %}
                {% if catalogitem.product.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.closestFreeDelivery %}
                {{ catalogitem.product.item.closestFreeDelivery.name }}
                {{ catalogitem.product.item.closestFreeDelivery.vatRate }}
                {% if catalogitem.product.item.closestFreeDelivery.id %}
                        {{ catalogitem.product.item.closestFreeDelivery.id }}
                {% endif %}
                {% if catalogitem.product.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.packageDimensions %}
                {{ catalogitem.product.item.packageDimensions }}
                {{ catalogitem.product.item.packageDimensions.height }}
                {{ catalogitem.product.item.packageDimensions.length }}
                {{ catalogitem.product.item.packageDimensions.width }}
                {{ catalogitem.product.item.packageDimensions.unit }}
        {% endif %}
        {% if catalogitem.product.item.image %}
                {{ catalogitem.product.item.image.originalHeight }}
                {{ catalogitem.product.item.image.originalWidth }}
                {{ catalogitem.product.item.image.url }}
                {% if catalogitem.product.item.image.alt %}
                        {{ catalogitem.product.item.image.alt }}
                {% endif %}
                {% if catalogitem.product.item.image.text %}
                        {{ catalogitem.product.item.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.price %}
                {{ catalogitem.product.item.price.vatRate }}
                {% if catalogitem.product.item.price.discountPercent %}
                        {{ catalogitem.product.item.price.discountPercent }}
                {% endif %}
                {% if catalogitem.product.item.price.discountValidTo %}
                        {{ catalogitem.product.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.product.item.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.product.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.item.url %}
                {{ catalogitem.product.item.url }}
                {{ catalogitem.product.item.url.absolute }}
                {{ catalogitem.product.item.url.path }}
        {% endif %}
        {% if catalogitem.product.item.variant %}
                {{ catalogitem.product.item.variant.id }}
                {{ catalogitem.product.item.variant.name }}
                {{ catalogitem.product.item.variant.trackingId }}
                {% if catalogitem.product.item.variant.active %} ... {% endif %}
                {% if catalogitem.product.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in catalogitem.product.item.variant.enumValues %}
                {% endfor %}
                {% for image in catalogitem.product.item.variant.images %}
                {% endfor %}
                {% for upsell in catalogitem.product.item.variant.availableUpsells %}
                {% endfor %}
                {% if catalogitem.product.item.variant.legacyRel %}
                        {{ catalogitem.product.item.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.product.item.variant.image %}
                {% endif %}
        {% endif %}
        {% for label in catalogitem.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                        {{ label.image.originalHeight }}
                        {{ label.image.originalWidth }}
                        {{ label.image.url }}
                        {% if label.image.alt %}
                                {{ label.image.alt }}
                        {% endif %}
                        {% if label.image.text %}
                                {{ label.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {{ productEnumValue.enum.id }}
                {{ productEnumValue.enum.name }}
                {% for enumValue in productEnumValue.enum.values %}
                {% endfor %}
                {% if productEnumValue.enum.text %}
                        {{ productEnumValue.enum.text }}
                {% endif %}
                {% if productEnumValue.enum.meaning %}
                {% endif %}
                {{ productEnumValue.url }}
                {{ productEnumValue.url.absolute }}
                {{ productEnumValue.url.path }}
                {% for variant in productEnumValue.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                        {{ productEnumValue.image.originalHeight }}
                        {{ productEnumValue.image.originalWidth }}
                        {{ productEnumValue.image.url }}
                        {% if productEnumValue.image.alt %}
                                {{ productEnumValue.image.alt }}
                        {% endif %}
                        {% if productEnumValue.image.text %}
                                {{ productEnumValue.image.text }}
                        {% endif %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                        {{ productEnumValue.variantImage.originalHeight }}
                        {{ productEnumValue.variantImage.originalWidth }}
                        {{ productEnumValue.variantImage.url }}
                        {% if productEnumValue.variantImage.alt %}
                                {{ productEnumValue.variantImage.alt }}
                        {% endif %}
                        {% if productEnumValue.variantImage.text %}
                                {{ productEnumValue.variantImage.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ product.category.id }}
                {{ product.category.productCount }}
                {{ product.category.productInStockCount }}
                {{ product.category.totalStockQuantity }}
                {{ product.category.headline }}
                {{ product.category.menuName }}
                {{ product.category.name }}
                {% if product.category.flagErotic %} ... {% endif %}
                {% if product.category.flagImportant %} ... {% endif %}
                {% if product.category.noFollow %} ... {% endif %}
                {% for category in product.category.subcategories %}
                {% endfor %}
                {% for video in product.category.videos %}
                {% endfor %}
                {{ product.category.pathIds }}
                {{ product.category.pathNames }}
                {{ product.category.templateAttribute }}
                {% if product.category.subHeadline %}
                        {{ product.category.subHeadline }}
                {% endif %}
                {% if product.category.text %}
                        {{ product.category.text }}
                {% endif %}
                {% if product.category.parent %}
                {% endif %}
                {% if product.category.image %}
                {% endif %}
                {% if product.category.contentGrid %}
                        {{ product.category.contentGrid }}
                {% endif %}
                {% for category in product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ product.item.id }}
                {{ product.item.name }}
                {{ product.item.trackingId }}
                {% if product.item.digital %} ... {% endif %}
                {% if product.item.sellable %} ... {% endif %}
                {% if product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in product.item.availableUpsells %}
                {% endfor %}
                {{ product.item.trackingIds }}
                {{ product.item.storageLocations }}
                {% if product.item.packageHeight %}
                        {{ product.item.packageHeight }}
                {% endif %}
                {% if product.item.packageLength %}
                        {{ product.item.packageLength }}
                {% endif %}
                {% if product.item.packageWeight %}
                        {{ product.item.packageWeight }}
                {% endif %}
                {% if product.item.packageWidth %}
                        {{ product.item.packageWidth }}
                {% endif %}
                {% if product.item.code %}
                        {{ product.item.code }}
                {% endif %}
                {% if product.item.bundle %}
                {% endif %}
                {% if product.item.cheapestDelivery %}
                {% endif %}
                {% if product.item.freeDelivery %}
                {% endif %}
                {% if product.item.closestFreeDelivery %}
                {% endif %}
                {% if product.item.packageDimensions %}
                {% endif %}
                {% if product.item.image %}
                {% endif %}
                {% if product.item.price %}
                {% endif %}
                {% if product.item.url %}
                {% endif %}
                {% if product.item.variant %}
                {% endif %}
                {% for label in product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {{ product.rating.count }}
                {% if product.rating.voted %} ... {% endif %}
                {% if product.rating.average %}
                        {{ product.rating.average }}
                {% endif %}
                {% for upsell in product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ product.url }}
                {{ product.url.absolute }}
                {{ product.url.path }}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ product.variantType.id }}
                {{ product.variantType.name }}
                {% for video in product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                        {{ product.attribute.name }}
                        {{ product.attribute.valuesHtml }}
                        {% for attributeValueInstance in product.attribute.values %}
                        {% endfor %}
                        {% if product.attribute.description %}
                                {{ product.attribute.description }}
                        {% endif %}
                        {% if product.attribute.group %}
                        {% endif %}
                        {% if product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if product.brand %}
                        {{ product.brand.id }}
                        {{ product.brand.name }}
                        {% if product.brand.flagImportant %} ... {% endif %}
                        {% for category in product.brand.categories %}
                        {% endfor %}
                        {% if product.brand.code %}
                                {{ product.brand.code }}
                        {% endif %}
                        {% if product.brand.web %}
                                {{ product.brand.web }}
                        {% endif %}
                        {% if product.brand.text %}
                                {{ product.brand.text }}
                        {% endif %}
                        {% if product.brand.image %}
                        {% endif %}
                        {% if product.brand.seo %}
                        {% endif %}
                        {% if product.brand.contentGrid %}
                                {{ product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                        {{ product.imageForEnumValueId.originalHeight }}
                        {{ product.imageForEnumValueId.originalWidth }}
                        {{ product.imageForEnumValueId.url }}
                        {% if product.imageForEnumValueId.alt %}
                                {{ product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if product.imageForEnumValueId.text %}
                                {{ product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if product.image %}
                        {{ product.image.originalHeight }}
                        {{ product.image.originalWidth }}
                        {{ product.image.url }}
                        {% if product.image.alt %}
                                {{ product.image.alt }}
                        {% endif %}
                        {% if product.image.text %}
                                {{ product.image.text }}
                        {% endif %}
                {% endif %}
                {% if product.successor %}
                        {{ product.successor.id }}
                        {{ product.successor.name }}
                        {{ product.successor.trackingId }}
                        {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                        {% if product.successor.active %} ... {% endif %}
                        {% if product.successor.compared %} ... {% endif %}
                        {% if product.successor.differentVariantPrices %} ... {% endif %}
                        {% if product.successor.flagNew %} ... {% endif %}
                        {% if product.successor.flagPromo %} ... {% endif %}
                        {% if product.successor.flagSecondHand %} ... {% endif %}
                        {% if product.successor.flagSellout %} ... {% endif %}
                        {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                        {% if product.successor.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in product.successor.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.successor.categories %}
                        {% endfor %}
                        {% for category in product.successor.otherCategories %}
                        {% endfor %}
                        {% for file in product.successor.files %}
                        {% endfor %}
                        {% for image in product.successor.images %}
                        {% endfor %}
                        {% for image in product.successor.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.successor.images360 %}
                        {% endfor %}
                        {% for image in product.successor.currentImages %}
                        {% endfor %}
                        {% for image in product.successor.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.successor.otherImages %}
                        {% endfor %}
                        {% for label in product.successor.labels %}
                        {% endfor %}
                        {% for productEnumValue in product.successor.enumValues %}
                        {% endfor %}
                        {% for upsell in product.successor.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.successor.currentVariants %}
                        {% endfor %}
                        {% for variant in product.successor.variants %}
                        {% endfor %}
                        {% for variant in product.successor.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.successor.videos %}
                        {% endfor %}
                        {{ product.successor.trackingIds }}
                        {% if product.successor.currentSubName %}
                                {{ product.successor.currentSubName }}
                        {% endif %}
                        {% if product.successor.nameSuffix %}
                                {{ product.successor.nameSuffix }}
                        {% endif %}
                        {% if product.successor.nameSupplier %}
                                {{ product.successor.nameSupplier }}
                        {% endif %}
                        {% if product.successor.text %}
                                {{ product.successor.text }}
                        {% endif %}
                        {% if product.successor.attribute %}
                        {% endif %}
                        {% if product.successor.brand %}
                        {% endif %}
                        {% if product.successor.imageForEnumValueId %}
                        {% endif %}
                        {% if product.successor.image %}
                        {% endif %}
                        {% if product.successor.seo %}
                        {% endif %}
                        {% if product.successor.supplier %}
                        {% endif %}
                        {% if product.successor.unit %}
                        {% endif %}
                        {% if product.successor.variant %}
                        {% endif %}
                        {% if product.successor.warranty %}
                        {% endif %}
                        {% if product.successor.contentGrid %}
                                {{ product.successor.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if product.seo %}
                        {% if product.seo.description %}
                                {{ product.seo.description }}
                        {% endif %}
                        {% if product.seo.keywords %}
                                {{ product.seo.keywords }}
                        {% endif %}
                        {% if product.seo.title %}
                                {{ product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if product.supplier %}
                        {{ product.supplier.id }}
                        {{ product.supplier.name }}
                {% endif %}
                {% if product.unit %}
                        {{ product.unit.name }}
                {% endif %}
                {% if product.variant %}
                        {{ product.variant.id }}
                        {{ product.variant.name }}
                        {{ product.variant.trackingId }}
                        {% if product.variant.active %} ... {% endif %}
                        {% if product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in product.variant.enumValues %}
                        {% endfor %}
                        {% for image in product.variant.images %}
                        {% endfor %}
                        {% for upsell in product.variant.availableUpsells %}
                        {% endfor %}
                        {% if product.variant.legacyRel %}
                                {{ product.variant.legacyRel }}
                        {% endif %}
                        {% if product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if product.warranty %}
                        {{ product.warranty.months }}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.rating.count }}
        {% if catalogitem.product.rating.voted %} ... {% endif %}
        {% if catalogitem.product.rating.average %}
                {{ catalogitem.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.url }}
        {{ catalogitem.product.url.absolute }}
        {{ catalogitem.product.url.path }}
        {% for variantChoiceStep in catalogitem.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                        {{ variantChoice.inputValue }}
                        {{ variantChoice.name }}
                        {% if variantChoice.selected %} ... {% endif %}
                        {% if variantChoice.color %}
                                {{ variantChoice.color }}
                        {% endif %}
                        {% if variantChoice.description %}
                                {{ variantChoice.description }}
                        {% endif %}
                        {% if variantChoice.availability %}
                        {% endif %}
                        {% if variantChoice.bundle %}
                        {% endif %}
                        {% if variantChoice.icon %}
                        {% endif %}
                        {% if variantChoice.image %}
                        {% endif %}
                        {% if variantChoice.price %}
                        {% endif %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                        {{ variantChoiceStep.icon.originalHeight }}
                        {{ variantChoiceStep.icon.originalWidth }}
                        {{ variantChoiceStep.icon.url }}
                        {% if variantChoiceStep.icon.alt %}
                                {{ variantChoiceStep.icon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.icon.text %}
                                {{ variantChoiceStep.icon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                        {{ variantChoiceStep.infoIcon.originalHeight }}
                        {{ variantChoiceStep.infoIcon.originalWidth }}
                        {{ variantChoiceStep.infoIcon.url }}
                        {% if variantChoiceStep.infoIcon.alt %}
                                {{ variantChoiceStep.infoIcon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon.text %}
                                {{ variantChoiceStep.infoIcon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.info %}
                        {{ variantChoiceStep.info.id }}
                        {{ variantChoiceStep.info.name }}
                        {% for file in variantChoiceStep.info.files %}
                        {% endfor %}
                        {% for image in variantChoiceStep.info.images %}
                        {% endfor %}
                        {% for textPage in variantChoiceStep.info.subPages %}
                        {% endfor %}
                        {% for video in variantChoiceStep.info.videos %}
                        {% endfor %}
                        {% if variantChoiceStep.info.code %}
                                {{ variantChoiceStep.info.code }}
                        {% endif %}
                        {% if variantChoiceStep.info.text %}
                                {{ variantChoiceStep.info.text }}
                        {% endif %}
                        {% if variantChoiceStep.info.image %}
                        {% endif %}
                        {% if variantChoiceStep.info.contentGrid %}
                                {{ variantChoiceStep.info.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                        {{ variantChoiceStep.selectedChoice.inputValue }}
                        {{ variantChoiceStep.selectedChoice.name }}
                        {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.color %}
                                {{ variantChoiceStep.selectedChoice.color }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.description %}
                                {{ variantChoiceStep.selectedChoice.description }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.bundle %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.icon %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.image %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.variantType.id }}
        {{ catalogitem.product.variantType.name }}
        {% for video in catalogitem.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.product.trackingIds }}
        {% if catalogitem.product.currentSubName %}
                {{ catalogitem.product.currentSubName }}
        {% endif %}
        {% if catalogitem.product.nameSuffix %}
                {{ catalogitem.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.product.nameSupplier %}
                {{ catalogitem.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.product.text %}
                {{ catalogitem.product.text }}
        {% endif %}
        {% if catalogitem.product.attribute %}
                {{ catalogitem.product.attribute.name }}
                {{ catalogitem.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.product.attribute.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if catalogitem.product.attribute.description %}
                        {{ catalogitem.product.attribute.description }}
                {% endif %}
                {% if catalogitem.product.attribute.group %}
                        {{ catalogitem.product.attribute.group.id }}
                {% endif %}
                {% if catalogitem.product.attribute.image %}
                        {{ catalogitem.product.attribute.image.originalHeight }}
                        {{ catalogitem.product.attribute.image.originalWidth }}
                        {{ catalogitem.product.attribute.image.url }}
                        {% if catalogitem.product.attribute.image.alt %}
                                {{ catalogitem.product.attribute.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.attribute.image.text %}
                                {{ catalogitem.product.attribute.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.brand %}
                {{ catalogitem.product.brand.id }}
                {{ catalogitem.product.brand.name }}
                {% if catalogitem.product.brand.flagImportant %} ... {% endif %}
                {% for category in catalogitem.product.brand.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.brand.url }}
                {{ catalogitem.product.brand.url.absolute }}
                {{ catalogitem.product.brand.url.path }}
                {{ catalogitem.product.brand.categoryUrl }}
                {{ catalogitem.product.brand.categoryUrl.absolute }}
                {{ catalogitem.product.brand.categoryUrl.path }}
                {% if catalogitem.product.brand.code %}
                        {{ catalogitem.product.brand.code }}
                {% endif %}
                {% if catalogitem.product.brand.web %}
                        {{ catalogitem.product.brand.web }}
                {% endif %}
                {% if catalogitem.product.brand.text %}
                        {{ catalogitem.product.brand.text }}
                {% endif %}
                {% if catalogitem.product.brand.image %}
                        {{ catalogitem.product.brand.image.originalHeight }}
                        {{ catalogitem.product.brand.image.originalWidth }}
                        {{ catalogitem.product.brand.image.url }}
                        {% if catalogitem.product.brand.image.alt %}
                                {{ catalogitem.product.brand.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.brand.image.text %}
                                {{ catalogitem.product.brand.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.brand.seo %}
                        {% if catalogitem.product.brand.seo.description %}
                                {{ catalogitem.product.brand.seo.description }}
                        {% endif %}
                        {% if catalogitem.product.brand.seo.keywords %}
                                {{ catalogitem.product.brand.seo.keywords }}
                        {% endif %}
                        {% if catalogitem.product.brand.seo.title %}
                                {{ catalogitem.product.brand.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.brand.contentGrid %}
                        {{ catalogitem.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.imageForEnumValueId %}
                {{ catalogitem.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.product.imageForEnumValueId.url }}
                {% if catalogitem.product.imageForEnumValueId.alt %}
                        {{ catalogitem.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.product.imageForEnumValueId.text %}
                        {{ catalogitem.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.image %}
                {{ catalogitem.product.image.originalHeight }}
                {{ catalogitem.product.image.originalWidth }}
                {{ catalogitem.product.image.url }}
                {% if catalogitem.product.image.alt %}
                        {{ catalogitem.product.image.alt }}
                {% endif %}
                {% if catalogitem.product.image.text %}
                        {{ catalogitem.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.successor %}
                {{ catalogitem.product.successor.id }}
                {{ catalogitem.product.successor.name }}
                {{ catalogitem.product.successor.trackingId }}
                {{ catalogitem.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.product.successor.active %} ... {% endif %}
                {% if catalogitem.product.successor.compared %} ... {% endif %}
                {% if catalogitem.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogitem.product.successor.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.product.successor.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.category.id }}
                {{ catalogitem.product.successor.category.productCount }}
                {{ catalogitem.product.successor.category.productInStockCount }}
                {{ catalogitem.product.successor.category.totalStockQuantity }}
                {{ catalogitem.product.successor.category.headline }}
                {{ catalogitem.product.successor.category.menuName }}
                {{ catalogitem.product.successor.category.name }}
                {% if catalogitem.product.successor.category.flagErotic %} ... {% endif %}
                {% if catalogitem.product.successor.category.flagImportant %} ... {% endif %}
                {% if catalogitem.product.successor.category.noFollow %} ... {% endif %}
                {% for category in catalogitem.product.successor.category.subcategories %}
                {% endfor %}
                {% for video in catalogitem.product.successor.category.videos %}
                {% endfor %}
                {{ catalogitem.product.successor.category.pathIds }}
                {{ catalogitem.product.successor.category.pathNames }}
                {{ catalogitem.product.successor.category.templateAttribute }}
                {% if catalogitem.product.successor.category.subHeadline %}
                        {{ catalogitem.product.successor.category.subHeadline }}
                {% endif %}
                {% if catalogitem.product.successor.category.text %}
                        {{ catalogitem.product.successor.category.text }}
                {% endif %}
                {% if catalogitem.product.successor.category.parent %}
                {% endif %}
                {% if catalogitem.product.successor.category.image %}
                {% endif %}
                {% if catalogitem.product.successor.category.contentGrid %}
                        {{ catalogitem.product.successor.category.contentGrid }}
                {% endif %}
                {% for category in catalogitem.product.successor.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in catalogitem.product.successor.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in catalogitem.product.successor.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.successor.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.item.id }}
                {{ catalogitem.product.successor.item.name }}
                {{ catalogitem.product.successor.item.trackingId }}
                {% if catalogitem.product.successor.item.digital %} ... {% endif %}
                {% if catalogitem.product.successor.item.sellable %} ... {% endif %}
                {% if catalogitem.product.successor.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.successor.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogitem.product.successor.item.availableUpsells %}
                {% endfor %}
                {{ catalogitem.product.successor.item.trackingIds }}
                {{ catalogitem.product.successor.item.storageLocations }}
                {% if catalogitem.product.successor.item.packageHeight %}
                        {{ catalogitem.product.successor.item.packageHeight }}
                {% endif %}
                {% if catalogitem.product.successor.item.packageLength %}
                        {{ catalogitem.product.successor.item.packageLength }}
                {% endif %}
                {% if catalogitem.product.successor.item.packageWeight %}
                        {{ catalogitem.product.successor.item.packageWeight }}
                {% endif %}
                {% if catalogitem.product.successor.item.packageWidth %}
                        {{ catalogitem.product.successor.item.packageWidth }}
                {% endif %}
                {% if catalogitem.product.successor.item.code %}
                        {{ catalogitem.product.successor.item.code }}
                {% endif %}
                {% if catalogitem.product.successor.item.bundle %}
                {% endif %}
                {% if catalogitem.product.successor.item.cheapestDelivery %}
                {% endif %}
                {% if catalogitem.product.successor.item.freeDelivery %}
                {% endif %}
                {% if catalogitem.product.successor.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogitem.product.successor.item.packageDimensions %}
                {% endif %}
                {% if catalogitem.product.successor.item.image %}
                {% endif %}
                {% if catalogitem.product.successor.item.price %}
                {% endif %}
                {% if catalogitem.product.successor.item.url %}
                {% endif %}
                {% if catalogitem.product.successor.item.variant %}
                {% endif %}
                {% for label in catalogitem.product.successor.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in catalogitem.product.successor.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {% for product in catalogitem.product.successor.packTemplateProducts %}
                        {{ product.id }}
                        {{ product.name }}
                        {{ product.trackingId }}
                        {{ product.dateCreated|date('d. m. Y H:i') }}
                        {% if product.active %} ... {% endif %}
                        {% if product.compared %} ... {% endif %}
                        {% if product.differentVariantPrices %} ... {% endif %}
                        {% if product.flagNew %} ... {% endif %}
                        {% if product.flagPromo %} ... {% endif %}
                        {% if product.flagSecondHand %} ... {% endif %}
                        {% if product.flagSellout %} ... {% endif %}
                        {% if product.otherDiscountApplicable %} ... {% endif %}
                        {% if product.soldSeparately %} ... {% endif %}
                        {% for attributeInstance in product.attributes %}
                        {% endfor %}
                        {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {% endfor %}
                        {% for category in product.categories %}
                        {% endfor %}
                        {% for category in product.otherCategories %}
                        {% endfor %}
                        {% for file in product.files %}
                        {% endfor %}
                        {% for image in product.images %}
                        {% endfor %}
                        {% for image in product.imagesWithEnumValue %}
                        {% endfor %}
                        {% for image in product.images360 %}
                        {% endfor %}
                        {% for image in product.currentImages %}
                        {% endfor %}
                        {% for image in product.imagesWithoutEnumValue %}
                        {% endfor %}
                        {% for image in product.otherImages %}
                        {% endfor %}
                        {% for label in product.labels %}
                        {% endfor %}
                        {% for productEnumValue in product.enumValues %}
                        {% endfor %}
                        {% for upsell in product.availableUpsells %}
                        {% endfor %}
                        {% for variantChoiceStep in product.variantChoiceSteps %}
                        {% endfor %}
                        {% for variant in product.currentVariants %}
                        {% endfor %}
                        {% for variant in product.variants %}
                        {% endfor %}
                        {% for variant in product.variantsWithEnumValueIds %}
                        {% endfor %}
                        {% for video in product.videos %}
                        {% endfor %}
                        {{ product.trackingIds }}
                        {% if product.currentSubName %}
                                {{ product.currentSubName }}
                        {% endif %}
                        {% if product.nameSuffix %}
                                {{ product.nameSuffix }}
                        {% endif %}
                        {% if product.nameSupplier %}
                                {{ product.nameSupplier }}
                        {% endif %}
                        {% if product.text %}
                                {{ product.text }}
                        {% endif %}
                        {% if product.attribute %}
                        {% endif %}
                        {% if product.brand %}
                        {% endif %}
                        {% if product.imageForEnumValueId %}
                        {% endif %}
                        {% if product.image %}
                        {% endif %}
                        {% if product.seo %}
                        {% endif %}
                        {% if product.supplier %}
                        {% endif %}
                        {% if product.unit %}
                        {% endif %}
                        {% if product.variant %}
                        {% endif %}
                        {% if product.warranty %}
                        {% endif %}
                        {% if product.contentGrid %}
                                {{ product.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.rating.count }}
                {% if catalogitem.product.successor.rating.voted %} ... {% endif %}
                {% if catalogitem.product.successor.rating.average %}
                        {{ catalogitem.product.successor.rating.average }}
                {% endif %}
                {% for upsell in catalogitem.product.successor.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.url }}
                {{ catalogitem.product.successor.url.absolute }}
                {{ catalogitem.product.successor.url.path }}
                {% for variantChoiceStep in catalogitem.product.successor.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogitem.product.successor.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogitem.product.successor.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in catalogitem.product.successor.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.variantType.id }}
                {{ catalogitem.product.successor.variantType.name }}
                {% for video in catalogitem.product.successor.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.successor.trackingIds }}
                {% if catalogitem.product.successor.currentSubName %}
                        {{ catalogitem.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.product.successor.nameSuffix %}
                        {{ catalogitem.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.product.successor.nameSupplier %}
                        {{ catalogitem.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.product.successor.text %}
                        {{ catalogitem.product.successor.text }}
                {% endif %}
                {% if catalogitem.product.successor.attribute %}
                        {{ catalogitem.product.successor.attribute.name }}
                        {{ catalogitem.product.successor.attribute.valuesHtml }}
                        {% for attributeValueInstance in catalogitem.product.successor.attribute.values %}
                        {% endfor %}
                        {% if catalogitem.product.successor.attribute.description %}
                                {{ catalogitem.product.successor.attribute.description }}
                        {% endif %}
                        {% if catalogitem.product.successor.attribute.group %}
                        {% endif %}
                        {% if catalogitem.product.successor.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.brand %}
                        {{ catalogitem.product.successor.brand.id }}
                        {{ catalogitem.product.successor.brand.name }}
                        {% if catalogitem.product.successor.brand.flagImportant %} ... {% endif %}
                        {% for category in catalogitem.product.successor.brand.categories %}
                        {% endfor %}
                        {% if catalogitem.product.successor.brand.code %}
                                {{ catalogitem.product.successor.brand.code }}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.web %}
                                {{ catalogitem.product.successor.brand.web }}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.text %}
                                {{ catalogitem.product.successor.brand.text }}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.image %}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.seo %}
                        {% endif %}
                        {% if catalogitem.product.successor.brand.contentGrid %}
                                {{ catalogitem.product.successor.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.imageForEnumValueId %}
                        {{ catalogitem.product.successor.imageForEnumValueId.originalHeight }}
                        {{ catalogitem.product.successor.imageForEnumValueId.originalWidth }}
                        {{ catalogitem.product.successor.imageForEnumValueId.url }}
                        {% if catalogitem.product.successor.imageForEnumValueId.alt %}
                                {{ catalogitem.product.successor.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if catalogitem.product.successor.imageForEnumValueId.text %}
                                {{ catalogitem.product.successor.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.image %}
                        {{ catalogitem.product.successor.image.originalHeight }}
                        {{ catalogitem.product.successor.image.originalWidth }}
                        {{ catalogitem.product.successor.image.url }}
                        {% if catalogitem.product.successor.image.alt %}
                                {{ catalogitem.product.successor.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.successor.image.text %}
                                {{ catalogitem.product.successor.image.text }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.seo %}
                        {% if catalogitem.product.successor.seo.description %}
                                {{ catalogitem.product.successor.seo.description }}
                        {% endif %}
                        {% if catalogitem.product.successor.seo.keywords %}
                                {{ catalogitem.product.successor.seo.keywords }}
                        {% endif %}
                        {% if catalogitem.product.successor.seo.title %}
                                {{ catalogitem.product.successor.seo.title }}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.supplier %}
                        {{ catalogitem.product.successor.supplier.id }}
                        {{ catalogitem.product.successor.supplier.name }}
                {% endif %}
                {% if catalogitem.product.successor.unit %}
                        {{ catalogitem.product.successor.unit.name }}
                {% endif %}
                {% if catalogitem.product.successor.variant %}
                        {{ catalogitem.product.successor.variant.id }}
                        {{ catalogitem.product.successor.variant.name }}
                        {{ catalogitem.product.successor.variant.trackingId }}
                        {% if catalogitem.product.successor.variant.active %} ... {% endif %}
                        {% if catalogitem.product.successor.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in catalogitem.product.successor.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in catalogitem.product.successor.variant.enumValues %}
                        {% endfor %}
                        {% for image in catalogitem.product.successor.variant.images %}
                        {% endfor %}
                        {% for upsell in catalogitem.product.successor.variant.availableUpsells %}
                        {% endfor %}
                        {% if catalogitem.product.successor.variant.legacyRel %}
                                {{ catalogitem.product.successor.variant.legacyRel }}
                        {% endif %}
                        {% if catalogitem.product.successor.variant.image %}
                        {% endif %}
                {% endif %}
                {% if catalogitem.product.successor.warranty %}
                        {{ catalogitem.product.successor.warranty.months }}
                {% endif %}
                {% if catalogitem.product.successor.contentGrid %}
                        {{ catalogitem.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.seo %}
                {% if catalogitem.product.seo.description %}
                        {{ catalogitem.product.seo.description }}
                {% endif %}
                {% if catalogitem.product.seo.keywords %}
                        {{ catalogitem.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.product.seo.title %}
                        {{ catalogitem.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.supplier %}
                {{ catalogitem.product.supplier.id }}
                {{ catalogitem.product.supplier.name }}
        {% endif %}
        {% if catalogitem.product.unit %}
                {{ catalogitem.product.unit.name }}
        {% endif %}
        {% if catalogitem.product.variant %}
                {{ catalogitem.product.variant.id }}
                {{ catalogitem.product.variant.name }}
                {{ catalogitem.product.variant.trackingId }}
                {% if catalogitem.product.variant.active %} ... {% endif %}
                {% if catalogitem.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in catalogitem.product.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in catalogitem.product.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.variant.item.id }}
                {{ catalogitem.product.variant.item.name }}
                {{ catalogitem.product.variant.item.trackingId }}
                {% if catalogitem.product.variant.item.digital %} ... {% endif %}
                {% if catalogitem.product.variant.item.sellable %} ... {% endif %}
                {% if catalogitem.product.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.product.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in catalogitem.product.variant.item.availableUpsells %}
                {% endfor %}
                {{ catalogitem.product.variant.item.trackingIds }}
                {{ catalogitem.product.variant.item.storageLocations }}
                {% if catalogitem.product.variant.item.packageHeight %}
                        {{ catalogitem.product.variant.item.packageHeight }}
                {% endif %}
                {% if catalogitem.product.variant.item.packageLength %}
                        {{ catalogitem.product.variant.item.packageLength }}
                {% endif %}
                {% if catalogitem.product.variant.item.packageWeight %}
                        {{ catalogitem.product.variant.item.packageWeight }}
                {% endif %}
                {% if catalogitem.product.variant.item.packageWidth %}
                        {{ catalogitem.product.variant.item.packageWidth }}
                {% endif %}
                {% if catalogitem.product.variant.item.code %}
                        {{ catalogitem.product.variant.item.code }}
                {% endif %}
                {% if catalogitem.product.variant.item.bundle %}
                {% endif %}
                {% if catalogitem.product.variant.item.cheapestDelivery %}
                {% endif %}
                {% if catalogitem.product.variant.item.freeDelivery %}
                {% endif %}
                {% if catalogitem.product.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if catalogitem.product.variant.item.packageDimensions %}
                {% endif %}
                {% if catalogitem.product.variant.item.image %}
                {% endif %}
                {% if catalogitem.product.variant.item.price %}
                {% endif %}
                {% if catalogitem.product.variant.item.url %}
                {% endif %}
                {% for upsell in catalogitem.product.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ catalogitem.product.variant.url }}
                {{ catalogitem.product.variant.url.absolute }}
                {{ catalogitem.product.variant.url.path }}
                {% if catalogitem.product.variant.legacyRel %}
                        {{ catalogitem.product.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.product.variant.image %}
                        {{ catalogitem.product.variant.image.originalHeight }}
                        {{ catalogitem.product.variant.image.originalWidth }}
                        {{ catalogitem.product.variant.image.url }}
                        {% if catalogitem.product.variant.image.alt %}
                                {{ catalogitem.product.variant.image.alt }}
                        {% endif %}
                        {% if catalogitem.product.variant.image.text %}
                                {{ catalogitem.product.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if catalogitem.product.warranty %}
                {{ catalogitem.product.warranty.months }}
        {% endif %}
        {% if catalogitem.product.contentGrid %}
                {{ catalogitem.product.contentGrid }}
        {% endif %}
{% endif %}

{% if catalogitem.unit %}
        {{ catalogitem.unit.name }}
{% endif %}

{% if catalogitem.upsell %}
        {{ catalogitem.upsell.id }}
        {{ catalogitem.upsell.name }}
        {% if catalogitem.upsell.inCart %} ... {% endif %}
        {{ catalogitem.upsell.category.id }}
        {{ catalogitem.upsell.category.productCount }}
        {{ catalogitem.upsell.category.productInStockCount }}
        {{ catalogitem.upsell.category.totalStockQuantity }}
        {{ catalogitem.upsell.category.headline }}
        {{ catalogitem.upsell.category.menuName }}
        {{ catalogitem.upsell.category.name }}
        {% if catalogitem.upsell.category.flagErotic %} ... {% endif %}
        {% if catalogitem.upsell.category.flagImportant %} ... {% endif %}
        {% if catalogitem.upsell.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.category.url }}
        {{ catalogitem.upsell.category.url.absolute }}
        {{ catalogitem.upsell.category.url.path }}
        {{ catalogitem.upsell.category.variantType.id }}
        {{ catalogitem.upsell.category.variantType.name }}
        {% for video in catalogitem.upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.category.pathIds }}
        {{ catalogitem.upsell.category.pathNames }}
        {{ catalogitem.upsell.category.templateAttribute }}
        {% if catalogitem.upsell.category.subHeadline %}
                {{ catalogitem.upsell.category.subHeadline }}
        {% endif %}
        {% if catalogitem.upsell.category.text %}
                {{ catalogitem.upsell.category.text }}
        {% endif %}
        {% if catalogitem.upsell.category.parent %}
                {{ catalogitem.upsell.category.parent.id }}
                {{ catalogitem.upsell.category.parent.productCount }}
                {{ catalogitem.upsell.category.parent.productInStockCount }}
                {{ catalogitem.upsell.category.parent.totalStockQuantity }}
                {{ catalogitem.upsell.category.parent.headline }}
                {{ catalogitem.upsell.category.parent.menuName }}
                {{ catalogitem.upsell.category.parent.name }}
                {% if catalogitem.upsell.category.parent.flagErotic %} ... {% endif %}
                {% if catalogitem.upsell.category.parent.flagImportant %} ... {% endif %}
                {% if catalogitem.upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in catalogitem.upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in catalogitem.upsell.category.parent.videos %}
                {% endfor %}
                {{ catalogitem.upsell.category.parent.pathIds }}
                {{ catalogitem.upsell.category.parent.pathNames }}
                {{ catalogitem.upsell.category.parent.templateAttribute }}
                {% if catalogitem.upsell.category.parent.subHeadline %}
                        {{ catalogitem.upsell.category.parent.subHeadline }}
                {% endif %}
                {% if catalogitem.upsell.category.parent.text %}
                        {{ catalogitem.upsell.category.parent.text }}
                {% endif %}
                {% if catalogitem.upsell.category.parent.image %}
                {% endif %}
                {% if catalogitem.upsell.category.parent.contentGrid %}
                        {{ catalogitem.upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.category.image %}
                {{ catalogitem.upsell.category.image.originalHeight }}
                {{ catalogitem.upsell.category.image.originalWidth }}
                {{ catalogitem.upsell.category.image.url }}
                {% if catalogitem.upsell.category.image.alt %}
                        {{ catalogitem.upsell.category.image.alt }}
                {% endif %}
                {% if catalogitem.upsell.category.image.text %}
                        {{ catalogitem.upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.category.contentGrid %}
                {{ catalogitem.upsell.category.contentGrid }}
        {% endif %}
        {{ catalogitem.upsell.price.vatRate }}
        {{ catalogitem.upsell.price.current.currency }}
        {{ catalogitem.upsell.price.current.formatted }}
        {{ catalogitem.upsell.price.current.value }}
        {% if catalogitem.upsell.price.discountPercent %}
                {{ catalogitem.upsell.price.discountPercent }}
        {% endif %}
        {% if catalogitem.upsell.price.discountValidTo %}
                {{ catalogitem.upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.upsell.price.beforeDiscount %}
                {{ catalogitem.upsell.price.beforeDiscount.currency }}
                {{ catalogitem.upsell.price.beforeDiscount.formatted }}
                {{ catalogitem.upsell.price.beforeDiscount.value }}
        {% endif %}
        {% if catalogitem.upsell.price.discount %}
                {{ catalogitem.upsell.price.discount.currency }}
                {{ catalogitem.upsell.price.discount.formatted }}
                {{ catalogitem.upsell.price.discount.value }}
        {% endif %}
        {{ catalogitem.upsell.product.id }}
        {{ catalogitem.upsell.product.name }}
        {{ catalogitem.upsell.product.trackingId }}
        {{ catalogitem.upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.upsell.product.active %} ... {% endif %}
        {% if catalogitem.upsell.product.compared %} ... {% endif %}
        {% if catalogitem.upsell.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.upsell.product.flagNew %} ... {% endif %}
        {% if catalogitem.upsell.product.flagPromo %} ... {% endif %}
        {% if catalogitem.upsell.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.upsell.product.flagSellout %} ... {% endif %}
        {% if catalogitem.upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in catalogitem.upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.category.id }}
        {{ catalogitem.upsell.product.category.productCount }}
        {{ catalogitem.upsell.product.category.productInStockCount }}
        {{ catalogitem.upsell.product.category.totalStockQuantity }}
        {{ catalogitem.upsell.product.category.headline }}
        {{ catalogitem.upsell.product.category.menuName }}
        {{ catalogitem.upsell.product.category.name }}
        {% if catalogitem.upsell.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.upsell.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.upsell.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in catalogitem.upsell.product.category.videos %}
        {% endfor %}
        {{ catalogitem.upsell.product.category.pathIds }}
        {{ catalogitem.upsell.product.category.pathNames }}
        {{ catalogitem.upsell.product.category.templateAttribute }}
        {% if catalogitem.upsell.product.category.subHeadline %}
                {{ catalogitem.upsell.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.upsell.product.category.text %}
                {{ catalogitem.upsell.product.category.text }}
        {% endif %}
        {% if catalogitem.upsell.product.category.parent %}
        {% endif %}
        {% if catalogitem.upsell.product.category.image %}
        {% endif %}
        {% if catalogitem.upsell.product.category.contentGrid %}
                {{ catalogitem.upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.item.id }}
        {{ catalogitem.upsell.product.item.name }}
        {{ catalogitem.upsell.product.item.trackingId }}
        {% if catalogitem.upsell.product.item.digital %} ... {% endif %}
        {% if catalogitem.upsell.product.item.sellable %} ... {% endif %}
        {% if catalogitem.upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in catalogitem.upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in catalogitem.upsell.product.item.availableUpsells %}
        {% endfor %}
        {{ catalogitem.upsell.product.item.trackingIds }}
        {{ catalogitem.upsell.product.item.storageLocations }}
        {% if catalogitem.upsell.product.item.packageHeight %}
                {{ catalogitem.upsell.product.item.packageHeight }}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageLength %}
                {{ catalogitem.upsell.product.item.packageLength }}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageWeight %}
                {{ catalogitem.upsell.product.item.packageWeight }}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageWidth %}
                {{ catalogitem.upsell.product.item.packageWidth }}
        {% endif %}
        {% if catalogitem.upsell.product.item.code %}
                {{ catalogitem.upsell.product.item.code }}
        {% endif %}
        {% if catalogitem.upsell.product.item.bundle %}
        {% endif %}
        {% if catalogitem.upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if catalogitem.upsell.product.item.freeDelivery %}
        {% endif %}
        {% if catalogitem.upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if catalogitem.upsell.product.item.packageDimensions %}
        {% endif %}
        {% if catalogitem.upsell.product.item.image %}
        {% endif %}
        {% if catalogitem.upsell.product.item.price %}
        {% endif %}
        {% if catalogitem.upsell.product.item.url %}
        {% endif %}
        {% if catalogitem.upsell.product.item.variant %}
        {% endif %}
        {% for label in catalogitem.upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.rating.count }}
        {% if catalogitem.upsell.product.rating.voted %} ... {% endif %}
        {% if catalogitem.upsell.product.rating.average %}
                {{ catalogitem.upsell.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.upsell.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.url }}
        {{ catalogitem.upsell.product.url.absolute }}
        {{ catalogitem.upsell.product.url.path }}
        {% for variantChoiceStep in catalogitem.upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.variantType.id }}
        {{ catalogitem.upsell.product.variantType.name }}
        {% for video in catalogitem.upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.upsell.product.trackingIds }}
        {% if catalogitem.upsell.product.currentSubName %}
                {{ catalogitem.upsell.product.currentSubName }}
        {% endif %}
        {% if catalogitem.upsell.product.nameSuffix %}
                {{ catalogitem.upsell.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.upsell.product.nameSupplier %}
                {{ catalogitem.upsell.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.upsell.product.text %}
                {{ catalogitem.upsell.product.text }}
        {% endif %}
        {% if catalogitem.upsell.product.attribute %}
                {{ catalogitem.upsell.product.attribute.name }}
                {{ catalogitem.upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.upsell.product.attribute.values %}
                {% endfor %}
                {% if catalogitem.upsell.product.attribute.description %}
                        {{ catalogitem.upsell.product.attribute.description }}
                {% endif %}
                {% if catalogitem.upsell.product.attribute.group %}
                {% endif %}
                {% if catalogitem.upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.brand %}
                {{ catalogitem.upsell.product.brand.id }}
                {{ catalogitem.upsell.product.brand.name }}
                {% if catalogitem.upsell.product.brand.flagImportant %} ... {% endif %}
                {% for category in catalogitem.upsell.product.brand.categories %}
                {% endfor %}
                {% if catalogitem.upsell.product.brand.code %}
                        {{ catalogitem.upsell.product.brand.code }}
                {% endif %}
                {% if catalogitem.upsell.product.brand.web %}
                        {{ catalogitem.upsell.product.brand.web }}
                {% endif %}
                {% if catalogitem.upsell.product.brand.text %}
                        {{ catalogitem.upsell.product.brand.text }}
                {% endif %}
                {% if catalogitem.upsell.product.brand.image %}
                {% endif %}
                {% if catalogitem.upsell.product.brand.seo %}
                {% endif %}
                {% if catalogitem.upsell.product.brand.contentGrid %}
                        {{ catalogitem.upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.imageForEnumValueId %}
                {{ catalogitem.upsell.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.upsell.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.upsell.product.imageForEnumValueId.url }}
                {% if catalogitem.upsell.product.imageForEnumValueId.alt %}
                        {{ catalogitem.upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.upsell.product.imageForEnumValueId.text %}
                        {{ catalogitem.upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.image %}
                {{ catalogitem.upsell.product.image.originalHeight }}
                {{ catalogitem.upsell.product.image.originalWidth }}
                {{ catalogitem.upsell.product.image.url }}
                {% if catalogitem.upsell.product.image.alt %}
                        {{ catalogitem.upsell.product.image.alt }}
                {% endif %}
                {% if catalogitem.upsell.product.image.text %}
                        {{ catalogitem.upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.successor %}
                {{ catalogitem.upsell.product.successor.id }}
                {{ catalogitem.upsell.product.successor.name }}
                {{ catalogitem.upsell.product.successor.trackingId }}
                {{ catalogitem.upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.upsell.product.successor.active %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.compared %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogitem.upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.upsell.product.successor.categories %}
                {% endfor %}
                {% for category in catalogitem.upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.upsell.product.successor.files %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.images %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in catalogitem.upsell.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in catalogitem.upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in catalogitem.upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.upsell.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in catalogitem.upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.upsell.product.successor.videos %}
                {% endfor %}
                {{ catalogitem.upsell.product.successor.trackingIds }}
                {% if catalogitem.upsell.product.successor.currentSubName %}
                        {{ catalogitem.upsell.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.nameSuffix %}
                        {{ catalogitem.upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.nameSupplier %}
                        {{ catalogitem.upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.text %}
                        {{ catalogitem.upsell.product.successor.text }}
                {% endif %}
                {% if catalogitem.upsell.product.successor.attribute %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.brand %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.image %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.seo %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.supplier %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.unit %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.variant %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.warranty %}
                {% endif %}
                {% if catalogitem.upsell.product.successor.contentGrid %}
                        {{ catalogitem.upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.seo %}
                {% if catalogitem.upsell.product.seo.description %}
                        {{ catalogitem.upsell.product.seo.description }}
                {% endif %}
                {% if catalogitem.upsell.product.seo.keywords %}
                        {{ catalogitem.upsell.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.upsell.product.seo.title %}
                        {{ catalogitem.upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.supplier %}
                {{ catalogitem.upsell.product.supplier.id }}
                {{ catalogitem.upsell.product.supplier.name }}
        {% endif %}
        {% if catalogitem.upsell.product.unit %}
                {{ catalogitem.upsell.product.unit.name }}
        {% endif %}
        {% if catalogitem.upsell.product.variant %}
                {{ catalogitem.upsell.product.variant.id }}
                {{ catalogitem.upsell.product.variant.name }}
                {{ catalogitem.upsell.product.variant.trackingId }}
                {% if catalogitem.upsell.product.variant.active %} ... {% endif %}
                {% if catalogitem.upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in catalogitem.upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in catalogitem.upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in catalogitem.upsell.product.variant.images %}
                {% endfor %}
                {% for upsell in catalogitem.upsell.product.variant.availableUpsells %}
                {% endfor %}
                {% if catalogitem.upsell.product.variant.legacyRel %}
                        {{ catalogitem.upsell.product.variant.legacyRel }}
                {% endif %}
                {% if catalogitem.upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.product.warranty %}
                {{ catalogitem.upsell.product.warranty.months }}
        {% endif %}
        {% if catalogitem.upsell.product.contentGrid %}
                {{ catalogitem.upsell.product.contentGrid }}
        {% endif %}
        {{ catalogitem.upsell.group.id }}
        {{ catalogitem.upsell.group.requiredNoteMaximumLength }}
        {{ catalogitem.upsell.group.name }}
        {% if catalogitem.upsell.group.requiredNote %} ... {% endif %}
        {% if catalogitem.upsell.group.requiredUpload %} ... {% endif %}
        {% if catalogitem.upsell.group.singleSelection %} ... {% endif %}
        {% if catalogitem.upsell.group.text %}
                {{ catalogitem.upsell.group.text }}
        {% endif %}
        {% if catalogitem.upsell.group.uploadInput %}
                {{ catalogitem.upsell.group.uploadInput }}
        {% endif %}
        {% if catalogitem.upsell.code %}
                {{ catalogitem.upsell.code }}
        {% endif %}
        {% if catalogitem.upsell.vatRate %}
                {{ catalogitem.upsell.vatRate }}
        {% endif %}
        {% if catalogitem.upsell.image %}
                {{ catalogitem.upsell.image.originalHeight }}
                {{ catalogitem.upsell.image.originalWidth }}
                {{ catalogitem.upsell.image.url }}
                {% if catalogitem.upsell.image.alt %}
                        {{ catalogitem.upsell.image.alt }}
                {% endif %}
                {% if catalogitem.upsell.image.text %}
                        {{ catalogitem.upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.upsell.unit %}
                {{ catalogitem.upsell.unit.name }}
        {% endif %}
{% endif %}

{% if catalogitem.variant %}
        {{ catalogitem.variant.id }}
        {{ catalogitem.variant.name }}
        {{ catalogitem.variant.trackingId }}
        {% if catalogitem.variant.active %} ... {% endif %}
        {% if catalogitem.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in catalogitem.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in catalogitem.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.item.id }}
        {{ catalogitem.variant.item.name }}
        {{ catalogitem.variant.item.trackingId }}
        {% if catalogitem.variant.item.digital %} ... {% endif %}
        {% if catalogitem.variant.item.sellable %} ... {% endif %}
        {% if catalogitem.variant.item.service %} ... {% endif %}
        {{ catalogitem.variant.item.availability.availableAmount }}
        {{ catalogitem.variant.item.availability.availableAmountInShowroom }}
        {{ catalogitem.variant.item.availability.availableAmountInStockroom }}
        {{ catalogitem.variant.item.availability.availableAmountInStorageCenter }}
        {{ catalogitem.variant.item.availability.hours }}
        {{ catalogitem.variant.item.availability.totalAmount }}
        {% if catalogitem.variant.item.availability.inShowroom %} ... {% endif %}
        {% if catalogitem.variant.item.availability.inStock %} ... {% endif %}
        {% if catalogitem.variant.item.availability.preorder %} ... {% endif %}
        {% if catalogitem.variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in catalogitem.variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if catalogitem.variant.item.availability.text %}
                {{ catalogitem.variant.item.availability.text }}
        {% endif %}
        {% if catalogitem.variant.item.availability.dateExpected %}
                {{ catalogitem.variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if catalogitem.variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in catalogitem.variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.item.product.id }}
        {{ catalogitem.variant.item.product.name }}
        {{ catalogitem.variant.item.product.trackingId }}
        {{ catalogitem.variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.variant.item.product.active %} ... {% endif %}
        {% if catalogitem.variant.item.product.compared %} ... {% endif %}
        {% if catalogitem.variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagNew %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagPromo %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.variant.item.product.flagSellout %} ... {% endif %}
        {% if catalogitem.variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in catalogitem.variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in catalogitem.variant.item.product.categories %}
        {% endfor %}
        {% for category in catalogitem.variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in catalogitem.variant.item.product.files %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.images %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.images360 %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.currentImages %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in catalogitem.variant.item.product.otherImages %}
        {% endfor %}
        {% for label in catalogitem.variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in catalogitem.variant.item.product.enumValues %}
        {% endfor %}
        {% for product in catalogitem.variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in catalogitem.variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in catalogitem.variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in catalogitem.variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in catalogitem.variant.item.product.variants %}
        {% endfor %}
        {% for variant in catalogitem.variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in catalogitem.variant.item.product.videos %}
        {% endfor %}
        {{ catalogitem.variant.item.product.trackingIds }}
        {% if catalogitem.variant.item.product.currentSubName %}
                {{ catalogitem.variant.item.product.currentSubName }}
        {% endif %}
        {% if catalogitem.variant.item.product.nameSuffix %}
                {{ catalogitem.variant.item.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.variant.item.product.nameSupplier %}
                {{ catalogitem.variant.item.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.variant.item.product.text %}
                {{ catalogitem.variant.item.product.text }}
        {% endif %}
        {% if catalogitem.variant.item.product.attribute %}
        {% endif %}
        {% if catalogitem.variant.item.product.brand %}
        {% endif %}
        {% if catalogitem.variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if catalogitem.variant.item.product.image %}
        {% endif %}
        {% if catalogitem.variant.item.product.successor %}
        {% endif %}
        {% if catalogitem.variant.item.product.seo %}
        {% endif %}
        {% if catalogitem.variant.item.product.supplier %}
        {% endif %}
        {% if catalogitem.variant.item.product.unit %}
        {% endif %}
        {% if catalogitem.variant.item.product.warranty %}
        {% endif %}
        {% if catalogitem.variant.item.product.contentGrid %}
                {{ catalogitem.variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in catalogitem.variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.item.trackingIds }}
        {{ catalogitem.variant.item.storageLocations }}
        {% if catalogitem.variant.item.packageHeight %}
                {{ catalogitem.variant.item.packageHeight }}
        {% endif %}
        {% if catalogitem.variant.item.packageLength %}
                {{ catalogitem.variant.item.packageLength }}
        {% endif %}
        {% if catalogitem.variant.item.packageWeight %}
                {{ catalogitem.variant.item.packageWeight }}
        {% endif %}
        {% if catalogitem.variant.item.packageWidth %}
                {{ catalogitem.variant.item.packageWidth }}
        {% endif %}
        {% if catalogitem.variant.item.code %}
                {{ catalogitem.variant.item.code }}
        {% endif %}
        {% if catalogitem.variant.item.bundle %}
                {% if catalogitem.variant.item.bundle.multiPack %} ... {% endif %}
                {% if catalogitem.variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.cheapestDelivery %}
                {{ catalogitem.variant.item.cheapestDelivery.inputId }}
                {{ catalogitem.variant.item.cheapestDelivery.name }}
                {{ catalogitem.variant.item.cheapestDelivery.vatRate }}
                {% if catalogitem.variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.text %}
                        {{ catalogitem.variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if catalogitem.variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.freeDelivery %}
                {{ catalogitem.variant.item.freeDelivery.name }}
                {{ catalogitem.variant.item.freeDelivery.vatRate }}
                {% if catalogitem.variant.item.freeDelivery.id %}
                        {{ catalogitem.variant.item.freeDelivery.id }}
                {% endif %}
                {% if catalogitem.variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.closestFreeDelivery %}
                {{ catalogitem.variant.item.closestFreeDelivery.name }}
                {{ catalogitem.variant.item.closestFreeDelivery.vatRate }}
                {% if catalogitem.variant.item.closestFreeDelivery.id %}
                        {{ catalogitem.variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if catalogitem.variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.packageDimensions %}
                {{ catalogitem.variant.item.packageDimensions }}
                {{ catalogitem.variant.item.packageDimensions.height }}
                {{ catalogitem.variant.item.packageDimensions.length }}
                {{ catalogitem.variant.item.packageDimensions.width }}
                {{ catalogitem.variant.item.packageDimensions.unit }}
        {% endif %}
        {% if catalogitem.variant.item.image %}
                {{ catalogitem.variant.item.image.originalHeight }}
                {{ catalogitem.variant.item.image.originalWidth }}
                {{ catalogitem.variant.item.image.url }}
                {% if catalogitem.variant.item.image.alt %}
                        {{ catalogitem.variant.item.image.alt }}
                {% endif %}
                {% if catalogitem.variant.item.image.text %}
                        {{ catalogitem.variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.price %}
                {{ catalogitem.variant.item.price.vatRate }}
                {% if catalogitem.variant.item.price.discountPercent %}
                        {{ catalogitem.variant.item.price.discountPercent }}
                {% endif %}
                {% if catalogitem.variant.item.price.discountValidTo %}
                        {{ catalogitem.variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if catalogitem.variant.item.price.beforeDiscount %}
                {% endif %}
                {% if catalogitem.variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.item.url %}
                {{ catalogitem.variant.item.url }}
                {{ catalogitem.variant.item.url.absolute }}
                {{ catalogitem.variant.item.url.path }}
        {% endif %}
        {{ catalogitem.variant.product.id }}
        {{ catalogitem.variant.product.name }}
        {{ catalogitem.variant.product.trackingId }}
        {{ catalogitem.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if catalogitem.variant.product.active %} ... {% endif %}
        {% if catalogitem.variant.product.compared %} ... {% endif %}
        {% if catalogitem.variant.product.differentVariantPrices %} ... {% endif %}
        {% if catalogitem.variant.product.flagNew %} ... {% endif %}
        {% if catalogitem.variant.product.flagPromo %} ... {% endif %}
        {% if catalogitem.variant.product.flagSecondHand %} ... {% endif %}
        {% if catalogitem.variant.product.flagSellout %} ... {% endif %}
        {% if catalogitem.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if catalogitem.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in catalogitem.variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in catalogitem.variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.category.id }}
        {{ catalogitem.variant.product.category.productCount }}
        {{ catalogitem.variant.product.category.productInStockCount }}
        {{ catalogitem.variant.product.category.totalStockQuantity }}
        {{ catalogitem.variant.product.category.headline }}
        {{ catalogitem.variant.product.category.menuName }}
        {{ catalogitem.variant.product.category.name }}
        {% if catalogitem.variant.product.category.flagErotic %} ... {% endif %}
        {% if catalogitem.variant.product.category.flagImportant %} ... {% endif %}
        {% if catalogitem.variant.product.category.noFollow %} ... {% endif %}
        {% for category in catalogitem.variant.product.category.subcategories %}
        {% endfor %}
        {% for video in catalogitem.variant.product.category.videos %}
        {% endfor %}
        {{ catalogitem.variant.product.category.pathIds }}
        {{ catalogitem.variant.product.category.pathNames }}
        {{ catalogitem.variant.product.category.templateAttribute }}
        {% if catalogitem.variant.product.category.subHeadline %}
                {{ catalogitem.variant.product.category.subHeadline }}
        {% endif %}
        {% if catalogitem.variant.product.category.text %}
                {{ catalogitem.variant.product.category.text }}
        {% endif %}
        {% if catalogitem.variant.product.category.parent %}
        {% endif %}
        {% if catalogitem.variant.product.category.image %}
        {% endif %}
        {% if catalogitem.variant.product.category.contentGrid %}
                {{ catalogitem.variant.product.category.contentGrid }}
        {% endif %}
        {% for category in catalogitem.variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in catalogitem.variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in catalogitem.variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in catalogitem.variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.item.id }}
        {{ catalogitem.variant.product.item.name }}
        {{ catalogitem.variant.product.item.trackingId }}
        {% if catalogitem.variant.product.item.digital %} ... {% endif %}
        {% if catalogitem.variant.product.item.sellable %} ... {% endif %}
        {% if catalogitem.variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in catalogitem.variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in catalogitem.variant.product.item.availableUpsells %}
        {% endfor %}
        {{ catalogitem.variant.product.item.trackingIds }}
        {{ catalogitem.variant.product.item.storageLocations }}
        {% if catalogitem.variant.product.item.packageHeight %}
                {{ catalogitem.variant.product.item.packageHeight }}
        {% endif %}
        {% if catalogitem.variant.product.item.packageLength %}
                {{ catalogitem.variant.product.item.packageLength }}
        {% endif %}
        {% if catalogitem.variant.product.item.packageWeight %}
                {{ catalogitem.variant.product.item.packageWeight }}
        {% endif %}
        {% if catalogitem.variant.product.item.packageWidth %}
                {{ catalogitem.variant.product.item.packageWidth }}
        {% endif %}
        {% if catalogitem.variant.product.item.code %}
                {{ catalogitem.variant.product.item.code }}
        {% endif %}
        {% if catalogitem.variant.product.item.bundle %}
        {% endif %}
        {% if catalogitem.variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if catalogitem.variant.product.item.freeDelivery %}
        {% endif %}
        {% if catalogitem.variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if catalogitem.variant.product.item.packageDimensions %}
        {% endif %}
        {% if catalogitem.variant.product.item.image %}
        {% endif %}
        {% if catalogitem.variant.product.item.price %}
        {% endif %}
        {% if catalogitem.variant.product.item.url %}
        {% endif %}
        {% for label in catalogitem.variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in catalogitem.variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in catalogitem.variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.rating.count }}
        {% if catalogitem.variant.product.rating.voted %} ... {% endif %}
        {% if catalogitem.variant.product.rating.average %}
                {{ catalogitem.variant.product.rating.average }}
        {% endif %}
        {% for upsell in catalogitem.variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.url }}
        {{ catalogitem.variant.product.url.absolute }}
        {{ catalogitem.variant.product.url.path }}
        {% for variantChoiceStep in catalogitem.variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in catalogitem.variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.variantType.id }}
        {{ catalogitem.variant.product.variantType.name }}
        {% for video in catalogitem.variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.product.trackingIds }}
        {% if catalogitem.variant.product.currentSubName %}
                {{ catalogitem.variant.product.currentSubName }}
        {% endif %}
        {% if catalogitem.variant.product.nameSuffix %}
                {{ catalogitem.variant.product.nameSuffix }}
        {% endif %}
        {% if catalogitem.variant.product.nameSupplier %}
                {{ catalogitem.variant.product.nameSupplier }}
        {% endif %}
        {% if catalogitem.variant.product.text %}
                {{ catalogitem.variant.product.text }}
        {% endif %}
        {% if catalogitem.variant.product.attribute %}
                {{ catalogitem.variant.product.attribute.name }}
                {{ catalogitem.variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in catalogitem.variant.product.attribute.values %}
                {% endfor %}
                {% if catalogitem.variant.product.attribute.description %}
                        {{ catalogitem.variant.product.attribute.description }}
                {% endif %}
                {% if catalogitem.variant.product.attribute.group %}
                {% endif %}
                {% if catalogitem.variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.brand %}
                {{ catalogitem.variant.product.brand.id }}
                {{ catalogitem.variant.product.brand.name }}
                {% if catalogitem.variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in catalogitem.variant.product.brand.categories %}
                {% endfor %}
                {% if catalogitem.variant.product.brand.code %}
                        {{ catalogitem.variant.product.brand.code }}
                {% endif %}
                {% if catalogitem.variant.product.brand.web %}
                        {{ catalogitem.variant.product.brand.web }}
                {% endif %}
                {% if catalogitem.variant.product.brand.text %}
                        {{ catalogitem.variant.product.brand.text }}
                {% endif %}
                {% if catalogitem.variant.product.brand.image %}
                {% endif %}
                {% if catalogitem.variant.product.brand.seo %}
                {% endif %}
                {% if catalogitem.variant.product.brand.contentGrid %}
                        {{ catalogitem.variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.imageForEnumValueId %}
                {{ catalogitem.variant.product.imageForEnumValueId.originalHeight }}
                {{ catalogitem.variant.product.imageForEnumValueId.originalWidth }}
                {{ catalogitem.variant.product.imageForEnumValueId.url }}
                {% if catalogitem.variant.product.imageForEnumValueId.alt %}
                        {{ catalogitem.variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if catalogitem.variant.product.imageForEnumValueId.text %}
                        {{ catalogitem.variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.image %}
                {{ catalogitem.variant.product.image.originalHeight }}
                {{ catalogitem.variant.product.image.originalWidth }}
                {{ catalogitem.variant.product.image.url }}
                {% if catalogitem.variant.product.image.alt %}
                        {{ catalogitem.variant.product.image.alt }}
                {% endif %}
                {% if catalogitem.variant.product.image.text %}
                        {{ catalogitem.variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.successor %}
                {{ catalogitem.variant.product.successor.id }}
                {{ catalogitem.variant.product.successor.name }}
                {{ catalogitem.variant.product.successor.trackingId }}
                {{ catalogitem.variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if catalogitem.variant.product.successor.active %} ... {% endif %}
                {% if catalogitem.variant.product.successor.compared %} ... {% endif %}
                {% if catalogitem.variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagNew %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagPromo %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if catalogitem.variant.product.successor.flagSellout %} ... {% endif %}
                {% if catalogitem.variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if catalogitem.variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in catalogitem.variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in catalogitem.variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in catalogitem.variant.product.successor.categories %}
                {% endfor %}
                {% for category in catalogitem.variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in catalogitem.variant.product.successor.files %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.images %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.images360 %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in catalogitem.variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in catalogitem.variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in catalogitem.variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in catalogitem.variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in catalogitem.variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in catalogitem.variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in catalogitem.variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in catalogitem.variant.product.successor.variants %}
                {% endfor %}
                {% for variant in catalogitem.variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in catalogitem.variant.product.successor.videos %}
                {% endfor %}
                {{ catalogitem.variant.product.successor.trackingIds }}
                {% if catalogitem.variant.product.successor.currentSubName %}
                        {{ catalogitem.variant.product.successor.currentSubName }}
                {% endif %}
                {% if catalogitem.variant.product.successor.nameSuffix %}
                        {{ catalogitem.variant.product.successor.nameSuffix }}
                {% endif %}
                {% if catalogitem.variant.product.successor.nameSupplier %}
                        {{ catalogitem.variant.product.successor.nameSupplier }}
                {% endif %}
                {% if catalogitem.variant.product.successor.text %}
                        {{ catalogitem.variant.product.successor.text }}
                {% endif %}
                {% if catalogitem.variant.product.successor.attribute %}
                {% endif %}
                {% if catalogitem.variant.product.successor.brand %}
                {% endif %}
                {% if catalogitem.variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if catalogitem.variant.product.successor.image %}
                {% endif %}
                {% if catalogitem.variant.product.successor.seo %}
                {% endif %}
                {% if catalogitem.variant.product.successor.supplier %}
                {% endif %}
                {% if catalogitem.variant.product.successor.unit %}
                {% endif %}
                {% if catalogitem.variant.product.successor.warranty %}
                {% endif %}
                {% if catalogitem.variant.product.successor.contentGrid %}
                        {{ catalogitem.variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.seo %}
                {% if catalogitem.variant.product.seo.description %}
                        {{ catalogitem.variant.product.seo.description }}
                {% endif %}
                {% if catalogitem.variant.product.seo.keywords %}
                        {{ catalogitem.variant.product.seo.keywords }}
                {% endif %}
                {% if catalogitem.variant.product.seo.title %}
                        {{ catalogitem.variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if catalogitem.variant.product.supplier %}
                {{ catalogitem.variant.product.supplier.id }}
                {{ catalogitem.variant.product.supplier.name }}
        {% endif %}
        {% if catalogitem.variant.product.unit %}
                {{ catalogitem.variant.product.unit.name }}
        {% endif %}
        {% if catalogitem.variant.product.warranty %}
                {{ catalogitem.variant.product.warranty.months }}
        {% endif %}
        {% if catalogitem.variant.product.contentGrid %}
                {{ catalogitem.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in catalogitem.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ catalogitem.variant.url }}
        {{ catalogitem.variant.url.absolute }}
        {{ catalogitem.variant.url.path }}
        {% if catalogitem.variant.legacyRel %}
                {{ catalogitem.variant.legacyRel }}
        {% endif %}
        {% if catalogitem.variant.image %}
                {{ catalogitem.variant.image.originalHeight }}
                {{ catalogitem.variant.image.originalWidth }}
                {{ catalogitem.variant.image.url }}
                {% if catalogitem.variant.image.alt %}
                        {{ catalogitem.variant.image.alt }}
                {% endif %}
                {% if catalogitem.variant.image.text %}
                        {{ catalogitem.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

Order/Item/DiscountItem

Attributy objektu Order/Item/DiscountItem

Název

Typ

Popis

amount

int

Množství

id

int

ID slevy

name

string

Název slevy

vatRate

float

Sazba DPH (%)

amountChangeAllowed

bool

Je povolena změna množství?

catalogItem

bool

Je položkou katalogu?

deleteAllowed

bool

Je povoleno odebrání z objednávky?

discountItem

bool

Je položka slevou?

children

Order/Item/DiscountItem[]

Podřazené položky (například díly kompletu)

note

string | null

Poznámka

trackingId

null | string

ID pro měřící kódy

percent

float | null

Hodnota v procentech (pouze pokud sleva byla už vytvořena jako procentuální)

discountCode

Order/DiscountCode | null

Slevový kód

voucher

Order/Voucher | null

Slevový kód / dárkový poukaz

price

Price | null

Hodnota slevy

priceTotal

Price | null

Cena celkem

unit

Unit | null

Množstevní jednotka

Příklady:

{{ discountitem.amount }}
{{ discountitem.id }}
{{ discountitem.name }}
{{ discountitem.vatRate }}
{% if discountitem.amountChangeAllowed %} ... {% endif %}
{% if discountitem.catalogItem %} ... {% endif %}
{% if discountitem.deleteAllowed %} ... {% endif %}
{% if discountitem.discountItem %} ... {% endif %}

{% for discountItem in discountitem.children %}
        {{ discountItem.amount }}
        {{ discountItem.id }}
        {{ discountItem.name }}
        {{ discountItem.vatRate }}
        {% if discountItem.amountChangeAllowed %} ... {% endif %}
        {% if discountItem.catalogItem %} ... {% endif %}
        {% if discountItem.deleteAllowed %} ... {% endif %}
        {% if discountItem.discountItem %} ... {% endif %}
        {% if discountItem.note %}
                {{ discountItem.note }}
        {% endif %}
        {% if discountItem.trackingId %}
                {{ discountItem.trackingId }}
        {% endif %}
        {% if discountItem.percent %}
                {{ discountItem.percent }}
        {% endif %}
        {% if discountItem.discountCode %}
                {{ discountItem.discountCode.code }}
                {{ discountItem.discountCode.name }}
        {% endif %}
        {% if discountItem.voucher %}
                {{ discountItem.voucher.code }}
                {{ discountItem.voucher.validTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if discountItem.price %}
                {{ discountItem.price.vatRate }}
                {{ discountItem.price.current.currency }}
                {{ discountItem.price.current.formatted }}
                {{ discountItem.price.current.value }}
                {% if discountItem.price.discountPercent %}
                        {{ discountItem.price.discountPercent }}
                {% endif %}
                {% if discountItem.price.discountValidTo %}
                        {{ discountItem.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.price.beforeDiscount %}
                        {{ discountItem.price.beforeDiscount.currency }}
                        {{ discountItem.price.beforeDiscount.formatted }}
                        {{ discountItem.price.beforeDiscount.value }}
                {% endif %}
                {% if discountItem.price.discount %}
                        {{ discountItem.price.discount.currency }}
                        {{ discountItem.price.discount.formatted }}
                        {{ discountItem.price.discount.value }}
                {% endif %}
        {% endif %}
        {% if discountItem.priceTotal %}
                {{ discountItem.priceTotal.vatRate }}
                {{ discountItem.priceTotal.current.currency }}
                {{ discountItem.priceTotal.current.formatted }}
                {{ discountItem.priceTotal.current.value }}
                {% if discountItem.priceTotal.discountPercent %}
                        {{ discountItem.priceTotal.discountPercent }}
                {% endif %}
                {% if discountItem.priceTotal.discountValidTo %}
                        {{ discountItem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if discountItem.priceTotal.beforeDiscount %}
                        {{ discountItem.priceTotal.beforeDiscount.currency }}
                        {{ discountItem.priceTotal.beforeDiscount.formatted }}
                        {{ discountItem.priceTotal.beforeDiscount.value }}
                {% endif %}
                {% if discountItem.priceTotal.discount %}
                        {{ discountItem.priceTotal.discount.currency }}
                        {{ discountItem.priceTotal.discount.formatted }}
                        {{ discountItem.priceTotal.discount.value }}
                {% endif %}
        {% endif %}
        {% if discountItem.unit %}
                {{ discountItem.unit.name }}
        {% endif %}
{% endfor %}

{% if discountitem.note %}
        {{ discountitem.note }}
{% endif %}

{% if discountitem.trackingId %}
        {{ discountitem.trackingId }}
{% endif %}

{% if discountitem.percent %}
        {{ discountitem.percent }}
{% endif %}

{% if discountitem.discountCode %}
        {{ discountitem.discountCode.code }}
        {{ discountitem.discountCode.name }}
{% endif %}

{% if discountitem.voucher %}
        {{ discountitem.voucher.code }}
        {{ discountitem.voucher.validTo|date('d. m. Y H:i') }}
{% endif %}

{% if discountitem.price %}
        {{ discountitem.price.vatRate }}
        {{ discountitem.price.current.currency }}
        {{ discountitem.price.current.formatted }}
        {{ discountitem.price.current.value }}
        {% if discountitem.price.discountPercent %}
                {{ discountitem.price.discountPercent }}
        {% endif %}
        {% if discountitem.price.discountValidTo %}
                {{ discountitem.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if discountitem.price.beforeDiscount %}
                {{ discountitem.price.beforeDiscount.currency }}
                {{ discountitem.price.beforeDiscount.formatted }}
                {{ discountitem.price.beforeDiscount.value }}
        {% endif %}
        {% if discountitem.price.discount %}
                {{ discountitem.price.discount.currency }}
                {{ discountitem.price.discount.formatted }}
                {{ discountitem.price.discount.value }}
        {% endif %}
{% endif %}

{% if discountitem.priceTotal %}
        {{ discountitem.priceTotal.vatRate }}
        {{ discountitem.priceTotal.current.currency }}
        {{ discountitem.priceTotal.current.formatted }}
        {{ discountitem.priceTotal.current.value }}
        {% if discountitem.priceTotal.discountPercent %}
                {{ discountitem.priceTotal.discountPercent }}
        {% endif %}
        {% if discountitem.priceTotal.discountValidTo %}
                {{ discountitem.priceTotal.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if discountitem.priceTotal.beforeDiscount %}
                {{ discountitem.priceTotal.beforeDiscount.currency }}
                {{ discountitem.priceTotal.beforeDiscount.formatted }}
                {{ discountitem.priceTotal.beforeDiscount.value }}
        {% endif %}
        {% if discountitem.priceTotal.discount %}
                {{ discountitem.priceTotal.discount.currency }}
                {{ discountitem.priceTotal.discount.formatted }}
                {{ discountitem.priceTotal.discount.value }}
        {% endif %}
{% endif %}

{% if discountitem.unit %}
        {{ discountitem.unit.name }}
{% endif %}

Order/Item/OrderItemError

Attributy objektu Order/Item/OrderItemError

Název

Typ

Popis

recommendedAmount

int

Doporučené validní množství

code

string

Kód chyby

itemName

string

Název problémové položky

message

string

Chybová zpráva

Příklady:

{{ orderitemerror.recommendedAmount }}
{{ orderitemerror.code }}
{{ orderitemerror.itemName }}
{{ orderitemerror.message }}

Order/Price

Attributy objektu Order/Price

Název

Typ

Popis

total

PriceValue

Celková hodnota

unpaid

PriceValue

Celkem k úhradě

paid

PriceValue

Celkem uhrazeno

Příklady:

{{ price.total.currency }}
{{ price.total.formatted }}
{{ price.total.value }}
{{ price.unpaid.currency }}
{{ price.unpaid.formatted }}
{{ price.unpaid.value }}
{{ price.paid.currency }}
{{ price.paid.formatted }}
{{ price.paid.value }}

Order/Status

Attributy objektu Order/Status

Název

Typ

Popis

id

int

ID

name

string

Název

subId

int | null

substatus ID

Příklady:

{{ status.id }}
{{ status.name }}

{% if status.subId %}
        {{ status.subId }}
{% endif %}

Order/Voucher

Attributy objektu Order/Voucher

Název

Typ

Popis

code

string

Kód

validTo

datetime

Datum konce platnosti

Příklady:

{{ voucher.code }}
{{ voucher.validTo|date('d. m. Y H:i') }}

Order/ZeroPrice

Attributy objektu Order/ZeroPrice

Název

Typ

Popis

total

PriceValue

Celková hodnota

unpaid

PriceValue

Celkem k úhradě

paid

PriceValue

Celkem uhrazeno

Příklady:

{{ zeroprice.total.currency }}
{{ zeroprice.total.formatted }}
{{ zeroprice.total.value }}
{{ zeroprice.unpaid.currency }}
{{ zeroprice.unpaid.formatted }}
{{ zeroprice.unpaid.value }}
{{ zeroprice.paid.currency }}
{{ zeroprice.paid.formatted }}
{{ zeroprice.paid.value }}

Package

Attributy objektu Package

Název

Typ

Popis

trackingUrl

string

URL sledování

date

datetime

Datum odeslání

status

PackageStatus

Stav balíku

code

string | null

Kód

Příklady:

{{ package.trackingUrl }}
{{ package.date|date('d. m. Y H:i') }}
{% if package.status.delivered %} ... {% endif %}
{% if package.status.deposited %} ... {% endif %}
{% if package.status.inTransit %} ... {% endif %}
{% if package.status.returned %} ... {% endif %}

{% if package.code %}
        {{ package.code }}
{% endif %}

PackageStatus

Attributy objektu PackageStatus

Název

Typ

Popis

delivered

bool

Byl balík doručen?

deposited

bool

Je balík uložen?

inTransit

bool

Je balík na cestě?

returned

bool

Byl balík vrácen? (nepřevzatý/odmítnutý)

Příklady:

{% if packagestatus.delivered %} ... {% endif %}
{% if packagestatus.deposited %} ... {% endif %}
{% if packagestatus.inTransit %} ... {% endif %}
{% if packagestatus.returned %} ... {% endif %}

Pagination

Attributy objektu Pagination

Název

Typ

Popis

currentPage

int

Číslo aktuální strany

nextPageResultCount

int

Počet výsledků na další straně

pageCount

int

Počet dostupných stran

perPage

int

Počet výsledků na stránku (maximum)

resultsFrom

int

Od kolikátého výsledku se vypisuje

resultsTo

int

Do kolikátého výsledku se vypisuje

totalResults

int

Celkový počet výsledků

html

html

HTML odkazů na stránky

nextPageUrl

string | null

URL následující stránky

Příklady:

{{ pagination.currentPage }}
{{ pagination.nextPageResultCount }}
{{ pagination.pageCount }}
{{ pagination.perPage }}
{{ pagination.resultsFrom }}
{{ pagination.resultsTo }}
{{ pagination.totalResults }}
{{ pagination.html }}

{% if pagination.nextPageUrl %}
        {{ pagination.nextPageUrl }}
{% endif %}

Payment

Attributy objektu Payment

Název

Typ

Popis

id

int

Id

name

string

Název

amount

PriceValue

Částka

text

string | null

Popis úhrady

Příklady:

{{ payment.id }}
{{ payment.name }}
{{ payment.amount.currency }}
{{ payment.amount.formatted }}
{{ payment.amount.value }}

{% if payment.text %}
        {{ payment.text }}
{% endif %}

Price

Attributy objektu Price

Název

Typ

Popis

vatRate

float

Sazba DPH

current

PriceValue

Cena

discountPercent

int | null

Sleva (procenta)

discountValidTo

datetime | null

Datum konce platnosti slevy (null pokud není sleva nebo je datum daleko)

beforeDiscount

PriceValue | null

Cena před slevou

discount

PriceValue | null

Sleva (částka)

Příklady:

{{ price.vatRate }}
{{ price.current.currency }}
{{ price.current.formatted }}
{{ price.current.value }}

{% if price.discountPercent %}
        {{ price.discountPercent }}
{% endif %}

{% if price.discountValidTo %}
        {{ price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}

{% if price.beforeDiscount %}
        {{ price.beforeDiscount.currency }}
        {{ price.beforeDiscount.formatted }}
        {{ price.beforeDiscount.value }}
{% endif %}

{% if price.discount %}
        {{ price.discount.currency }}
        {{ price.discount.formatted }}
        {{ price.discount.value }}
{% endif %}

PriceValue

Attributy objektu PriceValue

Název

Typ

Popis

currency

string

Měna

formatted

string

Formátovaný výstup (např. 1 123 Kč)

value

float

Hodnota

Příklady:

{{ pricevalue.currency }}
{{ pricevalue.formatted }}
{{ pricevalue.value }}

Product

AttributeMeaningRO::SIZE, AttributeMeaningRO::COLOR, AttributeMeaningRO::GENDER, AttributeMeaningRO::AGE_GROUP, AttributeMeaningRO::MATERIAL, AttributeMeaningRO::PATTERN })“

„packTemplateProducts“, „Product[]“, „Produkty do výběru setu“ „rating“, „Rating“, „Hodnocení“ „availableUpsells“, „Upsell[]“, „Dostupné položky pro upsell“ „url“, „Url“, „URL produktu“ „variantChoiceSteps“, „VariantChoiceStep[]“, „Kroky výběru výběru varianty“ „currentVariants“, „Variant[]“, „Varianty s hodnotou právě zobrazeného číselníku“ „variants“, „Variant[]“, „Varianty“ „variantsWithEnumValueIds“, „Variant[]“, „Varianty filtrované podle hodnot číselníků (každá varianta bude mít všechny hodnoty)“ „variantType“, „VariantType“, „Typ varianty“ „videos“, „Video[]“, „Videa“ „trackingIds“, „array“, „ID používané ve feedech a měřících skriptech - včetně všech variant“ „currentSubName“, „string | null“, „Název aktuálního výběru (název barvy, vybraná varianta, …)“ „nameSuffix“, „string | null“, „Dodatek názvu“ „nameSupplier“, „string | null“, „Název od dodavatele“ „text“, „html | null“, „Text“ „attribute“, „Attribute/AttributeInstance | null“, „Atribut s hodnotami“ „brand“, „Brand | null“, „Značka“ „imageForEnumValueId“, „Image | null“, „Obrázek produktu pro hodnotu číselníku nebo fallback“ „image“, „Image | null“, „Obrázek položky“ „successor“, „Product | null“, „Nástupce“ „seo“, „Seo | null“, „SEO attributy“ „supplier“, „Supplier | null“, „Dodavatel“ „unit“, „Unit | null“, „Množstevní jednotka“ „variant“, „Variant | null“, „Hlavní varianta“ „warranty“, „Warranty | null“, „Záruka“ „contentGrid“, „array | null“, „Content grid“

Příklady:

{{ product.id }}
{{ product.name }}
{{ product.trackingId }}
{{ product.dateCreated|date('d. m. Y H:i') }}
{% if product.active %} ... {% endif %}
{% if product.compared %} ... {% endif %}
{% if product.differentVariantPrices %} ... {% endif %}
{% if product.flagNew %} ... {% endif %}
{% if product.flagPromo %} ... {% endif %}
{% if product.flagSecondHand %} ... {% endif %}
{% if product.flagSellout %} ... {% endif %}
{% if product.otherDiscountApplicable %} ... {% endif %}
{% if product.soldSeparately %} ... {% endif %}

{% for attributeInstance in product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for availableUpsellGroup in product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ product.category.id }}
{{ product.category.productCount }}
{{ product.category.productInStockCount }}
{{ product.category.totalStockQuantity }}
{{ product.category.headline }}
{{ product.category.menuName }}
{{ product.category.name }}
{% if product.category.flagErotic %} ... {% endif %}
{% if product.category.flagImportant %} ... {% endif %}
{% if product.category.noFollow %} ... {% endif %}
{% for category in product.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ product.category.url }}
{{ product.category.url.absolute }}
{{ product.category.url.path }}
{{ product.category.variantType.id }}
{{ product.category.variantType.name }}
{% for video in product.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ product.category.pathIds }}
{{ product.category.pathNames }}
{{ product.category.templateAttribute }}
{% if product.category.subHeadline %}
        {{ product.category.subHeadline }}
{% endif %}
{% if product.category.text %}
        {{ product.category.text }}
{% endif %}
{% if product.category.parent %}
        {{ product.category.parent.id }}
        {{ product.category.parent.productCount }}
        {{ product.category.parent.productInStockCount }}
        {{ product.category.parent.totalStockQuantity }}
        {{ product.category.parent.headline }}
        {{ product.category.parent.menuName }}
        {{ product.category.parent.name }}
        {% if product.category.parent.flagErotic %} ... {% endif %}
        {% if product.category.parent.flagImportant %} ... {% endif %}
        {% if product.category.parent.noFollow %} ... {% endif %}
        {% for category in product.category.parent.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ product.category.parent.url }}
        {{ product.category.parent.url.absolute }}
        {{ product.category.parent.url.path }}
        {{ product.category.parent.variantType.id }}
        {{ product.category.parent.variantType.name }}
        {% for video in product.category.parent.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.category.parent.pathIds }}
        {{ product.category.parent.pathNames }}
        {{ product.category.parent.templateAttribute }}
        {% if product.category.parent.subHeadline %}
                {{ product.category.parent.subHeadline }}
        {% endif %}
        {% if product.category.parent.text %}
                {{ product.category.parent.text }}
        {% endif %}
        {% if product.category.parent.image %}
                {{ product.category.parent.image.originalHeight }}
                {{ product.category.parent.image.originalWidth }}
                {{ product.category.parent.image.url }}
                {% if product.category.parent.image.alt %}
                        {{ product.category.parent.image.alt }}
                {% endif %}
                {% if product.category.parent.image.text %}
                        {{ product.category.parent.image.text }}
                {% endif %}
        {% endif %}
        {% if product.category.parent.contentGrid %}
                {{ product.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if product.category.image %}
        {{ product.category.image.originalHeight }}
        {{ product.category.image.originalWidth }}
        {{ product.category.image.url }}
        {% if product.category.image.alt %}
                {{ product.category.image.alt }}
        {% endif %}
        {% if product.category.image.text %}
                {{ product.category.image.text }}
        {% endif %}
{% endif %}
{% if product.category.contentGrid %}
        {{ product.category.contentGrid }}
{% endif %}

{% for category in product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.parent.url }}
                {{ category.parent.url.absolute }}
                {{ category.parent.url.path }}
                {{ category.parent.variantType.id }}
                {{ category.parent.variantType.name }}
                {% for video in category.parent.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                        {{ category.parent.image.originalHeight }}
                        {{ category.parent.image.originalWidth }}
                        {{ category.parent.image.url }}
                        {% if category.parent.image.alt %}
                                {{ category.parent.image.alt }}
                        {% endif %}
                        {% if category.parent.image.text %}
                                {{ category.parent.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}

{% for category in product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.parent.url }}
                {{ category.parent.url.absolute }}
                {{ category.parent.url.path }}
                {{ category.parent.variantType.id }}
                {{ category.parent.variantType.name }}
                {% for video in category.parent.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                        {{ category.parent.image.originalHeight }}
                        {{ category.parent.image.originalWidth }}
                        {{ category.parent.image.url }}
                        {% if category.parent.image.alt %}
                                {{ category.parent.image.alt }}
                        {% endif %}
                        {% if category.parent.image.text %}
                                {{ category.parent.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}

{% for file in product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}

{% for image in product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}

{% for image in product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}

{% for image in product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}

{% for image in product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}

{% for image in product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}

{% for image in product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ product.item.id }}
{{ product.item.name }}
{{ product.item.trackingId }}
{% if product.item.digital %} ... {% endif %}
{% if product.item.sellable %} ... {% endif %}
{% if product.item.service %} ... {% endif %}
{{ product.item.availability.availableAmount }}
{{ product.item.availability.availableAmountInShowroom }}
{{ product.item.availability.availableAmountInStockroom }}
{{ product.item.availability.availableAmountInStorageCenter }}
{{ product.item.availability.hours }}
{{ product.item.availability.totalAmount }}
{% if product.item.availability.inShowroom %} ... {% endif %}
{% if product.item.availability.inStock %} ... {% endif %}
{% if product.item.availability.preorder %} ... {% endif %}
{% if product.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in product.item.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% if product.item.availability.text %}
        {{ product.item.availability.text }}
{% endif %}
{% if product.item.availability.dateExpected %}
        {{ product.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if product.item.availability.deliveryOption %}
        {{ product.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ product.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ product.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if product.item.availability.deliveryOption.timeDelivered %}
                {{ product.item.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}
{% for availableUpsellGroup in product.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ product.item.product.id }}
{{ product.item.product.name }}
{{ product.item.product.trackingId }}
{{ product.item.product.dateCreated|date('d. m. Y H:i') }}
{% if product.item.product.active %} ... {% endif %}
{% if product.item.product.compared %} ... {% endif %}
{% if product.item.product.differentVariantPrices %} ... {% endif %}
{% if product.item.product.flagNew %} ... {% endif %}
{% if product.item.product.flagPromo %} ... {% endif %}
{% if product.item.product.flagSecondHand %} ... {% endif %}
{% if product.item.product.flagSellout %} ... {% endif %}
{% if product.item.product.otherDiscountApplicable %} ... {% endif %}
{% if product.item.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in product.item.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
        {% endif %}
        {% if attributeInstance.image %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in product.item.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ product.item.product.category.id }}
{{ product.item.product.category.productCount }}
{{ product.item.product.category.productInStockCount }}
{{ product.item.product.category.totalStockQuantity }}
{{ product.item.product.category.headline }}
{{ product.item.product.category.menuName }}
{{ product.item.product.category.name }}
{% if product.item.product.category.flagErotic %} ... {% endif %}
{% if product.item.product.category.flagImportant %} ... {% endif %}
{% if product.item.product.category.noFollow %} ... {% endif %}
{% for category in product.item.product.category.subcategories %}
{% endfor %}
{% for video in product.item.product.category.videos %}
{% endfor %}
{{ product.item.product.category.pathIds }}
{{ product.item.product.category.pathNames }}
{{ product.item.product.category.templateAttribute }}
{% if product.item.product.category.subHeadline %}
        {{ product.item.product.category.subHeadline }}
{% endif %}
{% if product.item.product.category.text %}
        {{ product.item.product.category.text }}
{% endif %}
{% if product.item.product.category.parent %}
{% endif %}
{% if product.item.product.category.image %}
{% endif %}
{% if product.item.product.category.contentGrid %}
        {{ product.item.product.category.contentGrid }}
{% endif %}
{% for category in product.item.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in product.item.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in product.item.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in product.item.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in product.item.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in product.item.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in product.item.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in product.item.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in product.item.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for label in product.item.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
        {% endif %}
{% endfor %}
{% for productEnumValue in product.item.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {% for variant in productEnumValue.variants %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
        {% endif %}
        {% if productEnumValue.variantImage %}
        {% endif %}
{% endfor %}
{% for product in product.item.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.categories %}
        {% endfor %}
        {% for category in product.otherCategories %}
        {% endfor %}
        {% for file in product.files %}
        {% endfor %}
        {% for image in product.images %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.images360 %}
        {% endfor %}
        {% for image in product.currentImages %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.otherImages %}
        {% endfor %}
        {% for label in product.labels %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
        {% endfor %}
        {% for upsell in product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.currentVariants %}
        {% endfor %}
        {% for variant in product.variants %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.videos %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
        {% endif %}
        {% if product.brand %}
        {% endif %}
        {% if product.imageForEnumValueId %}
        {% endif %}
        {% if product.image %}
        {% endif %}
        {% if product.successor %}
        {% endif %}
        {% if product.seo %}
        {% endif %}
        {% if product.supplier %}
        {% endif %}
        {% if product.unit %}
        {% endif %}
        {% if product.variant %}
        {% endif %}
        {% if product.warranty %}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ product.item.product.rating.count }}
{% if product.item.product.rating.voted %} ... {% endif %}
{% if product.item.product.rating.average %}
        {{ product.item.product.rating.average }}
{% endif %}
{% for upsell in product.item.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ product.item.product.url }}
{{ product.item.product.url.absolute }}
{{ product.item.product.url.path }}
{% for variantChoiceStep in product.item.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
        {% endif %}
        {% if variantChoiceStep.info %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
        {% endif %}
{% endfor %}
{% for variant in product.item.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in product.item.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in product.item.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{{ product.item.product.variantType.id }}
{{ product.item.product.variantType.name }}
{% for video in product.item.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ product.item.product.trackingIds }}
{% if product.item.product.currentSubName %}
        {{ product.item.product.currentSubName }}
{% endif %}
{% if product.item.product.nameSuffix %}
        {{ product.item.product.nameSuffix }}
{% endif %}
{% if product.item.product.nameSupplier %}
        {{ product.item.product.nameSupplier }}
{% endif %}
{% if product.item.product.text %}
        {{ product.item.product.text }}
{% endif %}
{% if product.item.product.attribute %}
        {{ product.item.product.attribute.name }}
        {{ product.item.product.attribute.valuesHtml }}
        {% for attributeValueInstance in product.item.product.attribute.values %}
        {% endfor %}
        {% if product.item.product.attribute.description %}
                {{ product.item.product.attribute.description }}
        {% endif %}
        {% if product.item.product.attribute.group %}
        {% endif %}
        {% if product.item.product.attribute.image %}
        {% endif %}
{% endif %}
{% if product.item.product.brand %}
        {{ product.item.product.brand.id }}
        {{ product.item.product.brand.name }}
        {% if product.item.product.brand.flagImportant %} ... {% endif %}
        {% for category in product.item.product.brand.categories %}
        {% endfor %}
        {% if product.item.product.brand.code %}
                {{ product.item.product.brand.code }}
        {% endif %}
        {% if product.item.product.brand.web %}
                {{ product.item.product.brand.web }}
        {% endif %}
        {% if product.item.product.brand.text %}
                {{ product.item.product.brand.text }}
        {% endif %}
        {% if product.item.product.brand.image %}
        {% endif %}
        {% if product.item.product.brand.seo %}
        {% endif %}
        {% if product.item.product.brand.contentGrid %}
                {{ product.item.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if product.item.product.imageForEnumValueId %}
        {{ product.item.product.imageForEnumValueId.originalHeight }}
        {{ product.item.product.imageForEnumValueId.originalWidth }}
        {{ product.item.product.imageForEnumValueId.url }}
        {% if product.item.product.imageForEnumValueId.alt %}
                {{ product.item.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if product.item.product.imageForEnumValueId.text %}
                {{ product.item.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if product.item.product.image %}
        {{ product.item.product.image.originalHeight }}
        {{ product.item.product.image.originalWidth }}
        {{ product.item.product.image.url }}
        {% if product.item.product.image.alt %}
                {{ product.item.product.image.alt }}
        {% endif %}
        {% if product.item.product.image.text %}
                {{ product.item.product.image.text }}
        {% endif %}
{% endif %}
{% if product.item.product.successor %}
        {{ product.item.product.successor.id }}
        {{ product.item.product.successor.name }}
        {{ product.item.product.successor.trackingId }}
        {{ product.item.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if product.item.product.successor.active %} ... {% endif %}
        {% if product.item.product.successor.compared %} ... {% endif %}
        {% if product.item.product.successor.differentVariantPrices %} ... {% endif %}
        {% if product.item.product.successor.flagNew %} ... {% endif %}
        {% if product.item.product.successor.flagPromo %} ... {% endif %}
        {% if product.item.product.successor.flagSecondHand %} ... {% endif %}
        {% if product.item.product.successor.flagSellout %} ... {% endif %}
        {% if product.item.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if product.item.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.item.product.successor.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.item.product.successor.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.item.product.successor.categories %}
        {% endfor %}
        {% for category in product.item.product.successor.otherCategories %}
        {% endfor %}
        {% for file in product.item.product.successor.files %}
        {% endfor %}
        {% for image in product.item.product.successor.images %}
        {% endfor %}
        {% for image in product.item.product.successor.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.item.product.successor.images360 %}
        {% endfor %}
        {% for image in product.item.product.successor.currentImages %}
        {% endfor %}
        {% for image in product.item.product.successor.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.item.product.successor.otherImages %}
        {% endfor %}
        {% for label in product.item.product.successor.labels %}
        {% endfor %}
        {% for productEnumValue in product.item.product.successor.enumValues %}
        {% endfor %}
        {% for product in product.item.product.successor.packTemplateProducts %}
        {% endfor %}
        {% for upsell in product.item.product.successor.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.item.product.successor.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.item.product.successor.currentVariants %}
        {% endfor %}
        {% for variant in product.item.product.successor.variants %}
        {% endfor %}
        {% for variant in product.item.product.successor.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.item.product.successor.videos %}
        {% endfor %}
        {{ product.item.product.successor.trackingIds }}
        {% if product.item.product.successor.currentSubName %}
                {{ product.item.product.successor.currentSubName }}
        {% endif %}
        {% if product.item.product.successor.nameSuffix %}
                {{ product.item.product.successor.nameSuffix }}
        {% endif %}
        {% if product.item.product.successor.nameSupplier %}
                {{ product.item.product.successor.nameSupplier }}
        {% endif %}
        {% if product.item.product.successor.text %}
                {{ product.item.product.successor.text }}
        {% endif %}
        {% if product.item.product.successor.attribute %}
        {% endif %}
        {% if product.item.product.successor.brand %}
        {% endif %}
        {% if product.item.product.successor.imageForEnumValueId %}
        {% endif %}
        {% if product.item.product.successor.image %}
        {% endif %}
        {% if product.item.product.successor.seo %}
        {% endif %}
        {% if product.item.product.successor.supplier %}
        {% endif %}
        {% if product.item.product.successor.unit %}
        {% endif %}
        {% if product.item.product.successor.variant %}
        {% endif %}
        {% if product.item.product.successor.warranty %}
        {% endif %}
        {% if product.item.product.successor.contentGrid %}
                {{ product.item.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if product.item.product.seo %}
        {% if product.item.product.seo.description %}
                {{ product.item.product.seo.description }}
        {% endif %}
        {% if product.item.product.seo.keywords %}
                {{ product.item.product.seo.keywords }}
        {% endif %}
        {% if product.item.product.seo.title %}
                {{ product.item.product.seo.title }}
        {% endif %}
{% endif %}
{% if product.item.product.supplier %}
        {{ product.item.product.supplier.id }}
        {{ product.item.product.supplier.name }}
{% endif %}
{% if product.item.product.unit %}
        {{ product.item.product.unit.name }}
{% endif %}
{% if product.item.product.variant %}
        {{ product.item.product.variant.id }}
        {{ product.item.product.variant.name }}
        {{ product.item.product.variant.trackingId }}
        {% if product.item.product.variant.active %} ... {% endif %}
        {% if product.item.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in product.item.product.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in product.item.product.variant.enumValues %}
        {% endfor %}
        {% for image in product.item.product.variant.images %}
        {% endfor %}
        {% for upsell in product.item.product.variant.availableUpsells %}
        {% endfor %}
        {% if product.item.product.variant.legacyRel %}
                {{ product.item.product.variant.legacyRel }}
        {% endif %}
        {% if product.item.product.variant.image %}
        {% endif %}
{% endif %}
{% if product.item.product.warranty %}
        {{ product.item.product.warranty.months }}
{% endif %}
{% if product.item.product.contentGrid %}
        {{ product.item.product.contentGrid }}
{% endif %}
{% for upsell in product.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in upsell.product.categories %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
        {% endfor %}
        {% for file in upsell.product.files %}
        {% endfor %}
        {% for image in upsell.product.images %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
        {% endfor %}
        {% for label in upsell.product.labels %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in upsell.product.videos %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
        {% endif %}
        {% if upsell.product.brand %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if upsell.product.image %}
        {% endif %}
        {% if upsell.product.successor %}
        {% endif %}
        {% if upsell.product.seo %}
        {% endif %}
        {% if upsell.product.supplier %}
        {% endif %}
        {% if upsell.product.unit %}
        {% endif %}
        {% if upsell.product.variant %}
        {% endif %}
        {% if upsell.product.warranty %}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ product.item.trackingIds }}
{{ product.item.storageLocations }}
{% if product.item.packageHeight %}
        {{ product.item.packageHeight }}
{% endif %}
{% if product.item.packageLength %}
        {{ product.item.packageLength }}
{% endif %}
{% if product.item.packageWeight %}
        {{ product.item.packageWeight }}
{% endif %}
{% if product.item.packageWidth %}
        {{ product.item.packageWidth }}
{% endif %}
{% if product.item.code %}
        {{ product.item.code }}
{% endif %}
{% if product.item.bundle %}
        {% if product.item.bundle.multiPack %} ... {% endif %}
        {% if product.item.bundle.price %}
                {{ product.item.bundle.price.vatRate }}
                {% if product.item.bundle.price.discountPercent %}
                        {{ product.item.bundle.price.discountPercent }}
                {% endif %}
                {% if product.item.bundle.price.discountValidTo %}
                        {{ product.item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if product.item.bundle.price.beforeDiscount %}
                {% endif %}
                {% if product.item.bundle.price.discount %}
                {% endif %}
        {% endif %}
{% endif %}
{% if product.item.cheapestDelivery %}
        {{ product.item.cheapestDelivery.inputId }}
        {{ product.item.cheapestDelivery.name }}
        {{ product.item.cheapestDelivery.vatRate }}
        {% if product.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if product.item.cheapestDelivery.currier %} ... {% endif %}
        {% if product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if product.item.cheapestDelivery.free %} ... {% endif %}
        {% if product.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if product.item.cheapestDelivery.selected %} ... {% endif %}
        {{ product.item.cheapestDelivery.price.vatRate }}
        {% if product.item.cheapestDelivery.price.discountPercent %}
                {{ product.item.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if product.item.cheapestDelivery.price.discountValidTo %}
                {{ product.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.item.cheapestDelivery.price.beforeDiscount %}
        {% endif %}
        {% if product.item.cheapestDelivery.price.discount %}
        {% endif %}
        {% if product.item.cheapestDelivery.text %}
                {{ product.item.cheapestDelivery.text }}
        {% endif %}
        {% if product.item.cheapestDelivery.branch %}
                {{ product.item.cheapestDelivery.branch.code }}
                {{ product.item.cheapestDelivery.branch.name }}
        {% endif %}
        {% if product.item.cheapestDelivery.carrier %}
                {{ product.item.cheapestDelivery.carrier.code }}
                {{ product.item.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if product.item.cheapestDelivery.deliveryDate %}
                {{ product.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ product.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ product.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if product.item.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ product.item.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if product.item.cheapestDelivery.packageType %}
                {{ product.item.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if product.item.cheapestDelivery.image %}
                {{ product.item.cheapestDelivery.image.originalHeight }}
                {{ product.item.cheapestDelivery.image.originalWidth }}
                {{ product.item.cheapestDelivery.image.url }}
                {% if product.item.cheapestDelivery.image.alt %}
                        {{ product.item.cheapestDelivery.image.alt }}
                {% endif %}
                {% if product.item.cheapestDelivery.image.text %}
                        {{ product.item.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if product.item.freeDelivery %}
        {{ product.item.freeDelivery.name }}
        {{ product.item.freeDelivery.vatRate }}
        {{ product.item.freeDelivery.payment.code }}
        {{ product.item.freeDelivery.payment.inputId }}
        {{ product.item.freeDelivery.payment.name }}
        {{ product.item.freeDelivery.payment.url }}
        {{ product.item.freeDelivery.payment.vatRate }}
        {% if product.item.freeDelivery.payment.free %} ... {% endif %}
        {% if product.item.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if product.item.freeDelivery.payment.selected %} ... {% endif %}
        {% if product.item.freeDelivery.payment.vs %}
                {{ product.item.freeDelivery.payment.vs }}
        {% endif %}
        {% if product.item.freeDelivery.payment.qRCodeHTML %}
                {{ product.item.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if product.item.freeDelivery.payment.text %}
                {{ product.item.freeDelivery.payment.text }}
        {% endif %}
        {% if product.item.freeDelivery.payment.bankAccount %}
        {% endif %}
        {% if product.item.freeDelivery.payment.image %}
        {% endif %}
        {{ product.item.freeDelivery.transport.inputId }}
        {{ product.item.freeDelivery.transport.name }}
        {{ product.item.freeDelivery.transport.vatRate }}
        {% if product.item.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if product.item.freeDelivery.transport.currier %} ... {% endif %}
        {% if product.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if product.item.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if product.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if product.item.freeDelivery.transport.free %} ... {% endif %}
        {% if product.item.freeDelivery.transport.pickup %} ... {% endif %}
        {% if product.item.freeDelivery.transport.selected %} ... {% endif %}
        {% if product.item.freeDelivery.transport.text %}
                {{ product.item.freeDelivery.transport.text }}
        {% endif %}
        {% if product.item.freeDelivery.transport.branch %}
        {% endif %}
        {% if product.item.freeDelivery.transport.carrier %}
        {% endif %}
        {% if product.item.freeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if product.item.freeDelivery.transport.packageType %}
        {% endif %}
        {% if product.item.freeDelivery.transport.image %}
        {% endif %}
        {{ product.item.freeDelivery.price.vatRate }}
        {% if product.item.freeDelivery.price.discountPercent %}
                {{ product.item.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if product.item.freeDelivery.price.discountValidTo %}
                {{ product.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.item.freeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if product.item.freeDelivery.price.discount %}
        {% endif %}
        {% if product.item.freeDelivery.id %}
                {{ product.item.freeDelivery.id }}
        {% endif %}
        {% if product.item.freeDelivery.freeLimit %}
                {{ product.item.freeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if product.item.closestFreeDelivery %}
        {{ product.item.closestFreeDelivery.name }}
        {{ product.item.closestFreeDelivery.vatRate }}
        {{ product.item.closestFreeDelivery.payment.code }}
        {{ product.item.closestFreeDelivery.payment.inputId }}
        {{ product.item.closestFreeDelivery.payment.name }}
        {{ product.item.closestFreeDelivery.payment.url }}
        {{ product.item.closestFreeDelivery.payment.vatRate }}
        {% if product.item.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if product.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if product.item.closestFreeDelivery.payment.selected %} ... {% endif %}
        {% if product.item.closestFreeDelivery.payment.vs %}
                {{ product.item.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if product.item.closestFreeDelivery.payment.qRCodeHTML %}
                {{ product.item.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if product.item.closestFreeDelivery.payment.text %}
                {{ product.item.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if product.item.closestFreeDelivery.payment.bankAccount %}
        {% endif %}
        {% if product.item.closestFreeDelivery.payment.image %}
        {% endif %}
        {{ product.item.closestFreeDelivery.transport.inputId }}
        {{ product.item.closestFreeDelivery.transport.name }}
        {{ product.item.closestFreeDelivery.transport.vatRate }}
        {% if product.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.selected %} ... {% endif %}
        {% if product.item.closestFreeDelivery.transport.text %}
                {{ product.item.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if product.item.closestFreeDelivery.transport.branch %}
        {% endif %}
        {% if product.item.closestFreeDelivery.transport.carrier %}
        {% endif %}
        {% if product.item.closestFreeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if product.item.closestFreeDelivery.transport.packageType %}
        {% endif %}
        {% if product.item.closestFreeDelivery.transport.image %}
        {% endif %}
        {{ product.item.closestFreeDelivery.price.vatRate }}
        {% if product.item.closestFreeDelivery.price.discountPercent %}
                {{ product.item.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if product.item.closestFreeDelivery.price.discountValidTo %}
                {{ product.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.item.closestFreeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if product.item.closestFreeDelivery.price.discount %}
        {% endif %}
        {% if product.item.closestFreeDelivery.id %}
                {{ product.item.closestFreeDelivery.id }}
        {% endif %}
        {% if product.item.closestFreeDelivery.freeLimit %}
                {{ product.item.closestFreeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if product.item.packageDimensions %}
        {{ product.item.packageDimensions }}
        {{ product.item.packageDimensions.height }}
        {{ product.item.packageDimensions.length }}
        {{ product.item.packageDimensions.width }}
        {{ product.item.packageDimensions.unit }}
{% endif %}
{% if product.item.image %}
        {{ product.item.image.originalHeight }}
        {{ product.item.image.originalWidth }}
        {{ product.item.image.url }}
        {% if product.item.image.alt %}
                {{ product.item.image.alt }}
        {% endif %}
        {% if product.item.image.text %}
                {{ product.item.image.text }}
        {% endif %}
{% endif %}
{% if product.item.price %}
        {{ product.item.price.vatRate }}
        {{ product.item.price.current.currency }}
        {{ product.item.price.current.formatted }}
        {{ product.item.price.current.value }}
        {% if product.item.price.discountPercent %}
                {{ product.item.price.discountPercent }}
        {% endif %}
        {% if product.item.price.discountValidTo %}
                {{ product.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.item.price.beforeDiscount %}
                {{ product.item.price.beforeDiscount.currency }}
                {{ product.item.price.beforeDiscount.formatted }}
                {{ product.item.price.beforeDiscount.value }}
        {% endif %}
        {% if product.item.price.discount %}
                {{ product.item.price.discount.currency }}
                {{ product.item.price.discount.formatted }}
                {{ product.item.price.discount.value }}
        {% endif %}
{% endif %}
{% if product.item.url %}
        {{ product.item.url }}
        {{ product.item.url.absolute }}
        {{ product.item.url.path }}
{% endif %}
{% if product.item.variant %}
        {{ product.item.variant.id }}
        {{ product.item.variant.name }}
        {{ product.item.variant.trackingId }}
        {% if product.item.variant.active %} ... {% endif %}
        {% if product.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in product.item.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in product.item.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in product.item.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.item.variant.product.id }}
        {{ product.item.variant.product.name }}
        {{ product.item.variant.product.trackingId }}
        {{ product.item.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if product.item.variant.product.active %} ... {% endif %}
        {% if product.item.variant.product.compared %} ... {% endif %}
        {% if product.item.variant.product.differentVariantPrices %} ... {% endif %}
        {% if product.item.variant.product.flagNew %} ... {% endif %}
        {% if product.item.variant.product.flagPromo %} ... {% endif %}
        {% if product.item.variant.product.flagSecondHand %} ... {% endif %}
        {% if product.item.variant.product.flagSellout %} ... {% endif %}
        {% if product.item.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if product.item.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.item.variant.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.item.variant.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.item.variant.product.categories %}
        {% endfor %}
        {% for category in product.item.variant.product.otherCategories %}
        {% endfor %}
        {% for file in product.item.variant.product.files %}
        {% endfor %}
        {% for image in product.item.variant.product.images %}
        {% endfor %}
        {% for image in product.item.variant.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.item.variant.product.images360 %}
        {% endfor %}
        {% for image in product.item.variant.product.currentImages %}
        {% endfor %}
        {% for image in product.item.variant.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.item.variant.product.otherImages %}
        {% endfor %}
        {% for label in product.item.variant.product.labels %}
        {% endfor %}
        {% for productEnumValue in product.item.variant.product.enumValues %}
        {% endfor %}
        {% for product in product.item.variant.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in product.item.variant.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.item.variant.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.item.variant.product.currentVariants %}
        {% endfor %}
        {% for variant in product.item.variant.product.variants %}
        {% endfor %}
        {% for variant in product.item.variant.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.item.variant.product.videos %}
        {% endfor %}
        {{ product.item.variant.product.trackingIds }}
        {% if product.item.variant.product.currentSubName %}
                {{ product.item.variant.product.currentSubName }}
        {% endif %}
        {% if product.item.variant.product.nameSuffix %}
                {{ product.item.variant.product.nameSuffix }}
        {% endif %}
        {% if product.item.variant.product.nameSupplier %}
                {{ product.item.variant.product.nameSupplier }}
        {% endif %}
        {% if product.item.variant.product.text %}
                {{ product.item.variant.product.text }}
        {% endif %}
        {% if product.item.variant.product.attribute %}
        {% endif %}
        {% if product.item.variant.product.brand %}
        {% endif %}
        {% if product.item.variant.product.imageForEnumValueId %}
        {% endif %}
        {% if product.item.variant.product.image %}
        {% endif %}
        {% if product.item.variant.product.successor %}
        {% endif %}
        {% if product.item.variant.product.seo %}
        {% endif %}
        {% if product.item.variant.product.supplier %}
        {% endif %}
        {% if product.item.variant.product.unit %}
        {% endif %}
        {% if product.item.variant.product.warranty %}
        {% endif %}
        {% if product.item.variant.product.contentGrid %}
                {{ product.item.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in product.item.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.item.variant.url }}
        {{ product.item.variant.url.absolute }}
        {{ product.item.variant.url.path }}
        {% if product.item.variant.legacyRel %}
                {{ product.item.variant.legacyRel }}
        {% endif %}
        {% if product.item.variant.image %}
                {{ product.item.variant.image.originalHeight }}
                {{ product.item.variant.image.originalWidth }}
                {{ product.item.variant.image.url }}
                {% if product.item.variant.image.alt %}
                        {{ product.item.variant.image.alt }}
                {% endif %}
                {% if product.item.variant.image.text %}
                        {{ product.item.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% for label in product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
                {{ label.image.originalHeight }}
                {{ label.image.originalWidth }}
                {{ label.image.url }}
                {% if label.image.alt %}
                        {{ label.image.alt }}
                {% endif %}
                {% if label.image.text %}
                        {{ label.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for productEnumValue in product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {{ productEnumValue.enum.id }}
        {{ productEnumValue.enum.name }}
        {% for enumValue in productEnumValue.enum.values %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% if productEnumValue.enum.text %}
                {{ productEnumValue.enum.text }}
        {% endif %}
        {% if productEnumValue.enum.meaning %}
                {{ productEnumValue.enum.meaning.code }}
        {% endif %}
        {{ productEnumValue.url }}
        {{ productEnumValue.url.absolute }}
        {{ productEnumValue.url.path }}
        {% for variant in productEnumValue.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for product in variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.successor %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
                {{ productEnumValue.image.originalHeight }}
                {{ productEnumValue.image.originalWidth }}
                {{ productEnumValue.image.url }}
                {% if productEnumValue.image.alt %}
                        {{ productEnumValue.image.alt }}
                {% endif %}
                {% if productEnumValue.image.text %}
                        {{ productEnumValue.image.text }}
                {% endif %}
        {% endif %}
        {% if productEnumValue.variantImage %}
                {{ productEnumValue.variantImage.originalHeight }}
                {{ productEnumValue.variantImage.originalWidth }}
                {{ productEnumValue.variantImage.url }}
                {% if productEnumValue.variantImage.alt %}
                        {{ productEnumValue.variantImage.alt }}
                {% endif %}
                {% if productEnumValue.variantImage.text %}
                        {{ productEnumValue.variantImage.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for product in product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                        {{ attributeInstance.group.id }}
                {% endif %}
                {% if attributeInstance.image %}
                        {{ attributeInstance.image.originalHeight }}
                        {{ attributeInstance.image.originalWidth }}
                        {{ attributeInstance.image.url }}
                        {% if attributeInstance.image.alt %}
                                {{ attributeInstance.image.alt }}
                        {% endif %}
                        {% if attributeInstance.image.text %}
                                {{ attributeInstance.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.category.id }}
        {{ product.category.productCount }}
        {{ product.category.productInStockCount }}
        {{ product.category.totalStockQuantity }}
        {{ product.category.headline }}
        {{ product.category.menuName }}
        {{ product.category.name }}
        {% if product.category.flagErotic %} ... {% endif %}
        {% if product.category.flagImportant %} ... {% endif %}
        {% if product.category.noFollow %} ... {% endif %}
        {% for category in product.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ product.category.url }}
        {{ product.category.url.absolute }}
        {{ product.category.url.path }}
        {{ product.category.variantType.id }}
        {{ product.category.variantType.name }}
        {% for video in product.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.category.pathIds }}
        {{ product.category.pathNames }}
        {{ product.category.templateAttribute }}
        {% if product.category.subHeadline %}
                {{ product.category.subHeadline }}
        {% endif %}
        {% if product.category.text %}
                {{ product.category.text }}
        {% endif %}
        {% if product.category.parent %}
                {{ product.category.parent.id }}
                {{ product.category.parent.productCount }}
                {{ product.category.parent.productInStockCount }}
                {{ product.category.parent.totalStockQuantity }}
                {{ product.category.parent.headline }}
                {{ product.category.parent.menuName }}
                {{ product.category.parent.name }}
                {% if product.category.parent.flagErotic %} ... {% endif %}
                {% if product.category.parent.flagImportant %} ... {% endif %}
                {% if product.category.parent.noFollow %} ... {% endif %}
                {% for category in product.category.parent.subcategories %}
                {% endfor %}
                {% for video in product.category.parent.videos %}
                {% endfor %}
                {{ product.category.parent.pathIds }}
                {{ product.category.parent.pathNames }}
                {{ product.category.parent.templateAttribute }}
                {% if product.category.parent.subHeadline %}
                        {{ product.category.parent.subHeadline }}
                {% endif %}
                {% if product.category.parent.text %}
                        {{ product.category.parent.text }}
                {% endif %}
                {% if product.category.parent.image %}
                {% endif %}
                {% if product.category.parent.contentGrid %}
                        {{ product.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.category.image %}
                {{ product.category.image.originalHeight }}
                {{ product.category.image.originalWidth }}
                {{ product.category.image.url }}
                {% if product.category.image.alt %}
                        {{ product.category.image.alt }}
                {% endif %}
                {% if product.category.image.text %}
                        {{ product.category.image.text }}
                {% endif %}
        {% endif %}
        {% if product.category.contentGrid %}
                {{ product.category.contentGrid }}
        {% endif %}
        {% for category in product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.usage.archive %} ... {% endif %}
                {% if file.usage.graphic %} ... {% endif %}
                {% if file.usage.manual %} ... {% endif %}
                {% if file.usage.other %} ... {% endif %}
                {% if file.usage.sound %} ... {% endif %}
                {% if file.usage.specification %} ... {% endif %}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.item.id }}
        {{ product.item.name }}
        {{ product.item.trackingId }}
        {% if product.item.digital %} ... {% endif %}
        {% if product.item.sellable %} ... {% endif %}
        {% if product.item.service %} ... {% endif %}
        {{ product.item.availability.availableAmount }}
        {{ product.item.availability.availableAmountInShowroom }}
        {{ product.item.availability.availableAmountInStockroom }}
        {{ product.item.availability.availableAmountInStorageCenter }}
        {{ product.item.availability.hours }}
        {{ product.item.availability.totalAmount }}
        {% if product.item.availability.inShowroom %} ... {% endif %}
        {% if product.item.availability.inStock %} ... {% endif %}
        {% if product.item.availability.preorder %} ... {% endif %}
        {% if product.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in product.item.availability.deliveryOptions %}
        {% endfor %}
        {% if product.item.availability.text %}
                {{ product.item.availability.text }}
        {% endif %}
        {% if product.item.availability.dateExpected %}
                {{ product.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in product.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.item.product.id }}
        {{ product.item.product.name }}
        {{ product.item.product.trackingId }}
        {{ product.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if product.item.product.active %} ... {% endif %}
        {% if product.item.product.compared %} ... {% endif %}
        {% if product.item.product.differentVariantPrices %} ... {% endif %}
        {% if product.item.product.flagNew %} ... {% endif %}
        {% if product.item.product.flagPromo %} ... {% endif %}
        {% if product.item.product.flagSecondHand %} ... {% endif %}
        {% if product.item.product.flagSellout %} ... {% endif %}
        {% if product.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if product.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.item.product.categories %}
        {% endfor %}
        {% for category in product.item.product.otherCategories %}
        {% endfor %}
        {% for file in product.item.product.files %}
        {% endfor %}
        {% for image in product.item.product.images %}
        {% endfor %}
        {% for image in product.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.item.product.images360 %}
        {% endfor %}
        {% for image in product.item.product.currentImages %}
        {% endfor %}
        {% for image in product.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.item.product.otherImages %}
        {% endfor %}
        {% for label in product.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in product.item.product.enumValues %}
        {% endfor %}
        {% for upsell in product.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.item.product.currentVariants %}
        {% endfor %}
        {% for variant in product.item.product.variants %}
        {% endfor %}
        {% for variant in product.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.item.product.videos %}
        {% endfor %}
        {{ product.item.product.trackingIds }}
        {% if product.item.product.currentSubName %}
                {{ product.item.product.currentSubName }}
        {% endif %}
        {% if product.item.product.nameSuffix %}
                {{ product.item.product.nameSuffix }}
        {% endif %}
        {% if product.item.product.nameSupplier %}
                {{ product.item.product.nameSupplier }}
        {% endif %}
        {% if product.item.product.text %}
                {{ product.item.product.text }}
        {% endif %}
        {% if product.item.product.attribute %}
        {% endif %}
        {% if product.item.product.brand %}
        {% endif %}
        {% if product.item.product.imageForEnumValueId %}
        {% endif %}
        {% if product.item.product.image %}
        {% endif %}
        {% if product.item.product.successor %}
        {% endif %}
        {% if product.item.product.seo %}
        {% endif %}
        {% if product.item.product.supplier %}
        {% endif %}
        {% if product.item.product.unit %}
        {% endif %}
        {% if product.item.product.variant %}
        {% endif %}
        {% if product.item.product.warranty %}
        {% endif %}
        {% if product.item.product.contentGrid %}
                {{ product.item.product.contentGrid }}
        {% endif %}
        {% for upsell in product.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.item.trackingIds }}
        {{ product.item.storageLocations }}
        {% if product.item.packageHeight %}
                {{ product.item.packageHeight }}
        {% endif %}
        {% if product.item.packageLength %}
                {{ product.item.packageLength }}
        {% endif %}
        {% if product.item.packageWeight %}
                {{ product.item.packageWeight }}
        {% endif %}
        {% if product.item.packageWidth %}
                {{ product.item.packageWidth }}
        {% endif %}
        {% if product.item.code %}
                {{ product.item.code }}
        {% endif %}
        {% if product.item.bundle %}
                {% if product.item.bundle.multiPack %} ... {% endif %}
                {% if product.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if product.item.cheapestDelivery %}
                {{ product.item.cheapestDelivery.inputId }}
                {{ product.item.cheapestDelivery.name }}
                {{ product.item.cheapestDelivery.vatRate }}
                {% if product.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if product.item.cheapestDelivery.currier %} ... {% endif %}
                {% if product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if product.item.cheapestDelivery.free %} ... {% endif %}
                {% if product.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if product.item.cheapestDelivery.selected %} ... {% endif %}
                {% if product.item.cheapestDelivery.text %}
                        {{ product.item.cheapestDelivery.text }}
                {% endif %}
                {% if product.item.cheapestDelivery.branch %}
                {% endif %}
                {% if product.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if product.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if product.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if product.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if product.item.freeDelivery %}
                {{ product.item.freeDelivery.name }}
                {{ product.item.freeDelivery.vatRate }}
                {% if product.item.freeDelivery.id %}
                        {{ product.item.freeDelivery.id }}
                {% endif %}
                {% if product.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if product.item.closestFreeDelivery %}
                {{ product.item.closestFreeDelivery.name }}
                {{ product.item.closestFreeDelivery.vatRate }}
                {% if product.item.closestFreeDelivery.id %}
                        {{ product.item.closestFreeDelivery.id }}
                {% endif %}
                {% if product.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if product.item.packageDimensions %}
                {{ product.item.packageDimensions }}
                {{ product.item.packageDimensions.height }}
                {{ product.item.packageDimensions.length }}
                {{ product.item.packageDimensions.width }}
                {{ product.item.packageDimensions.unit }}
        {% endif %}
        {% if product.item.image %}
                {{ product.item.image.originalHeight }}
                {{ product.item.image.originalWidth }}
                {{ product.item.image.url }}
                {% if product.item.image.alt %}
                        {{ product.item.image.alt }}
                {% endif %}
                {% if product.item.image.text %}
                        {{ product.item.image.text }}
                {% endif %}
        {% endif %}
        {% if product.item.price %}
                {{ product.item.price.vatRate }}
                {% if product.item.price.discountPercent %}
                        {{ product.item.price.discountPercent }}
                {% endif %}
                {% if product.item.price.discountValidTo %}
                        {{ product.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if product.item.price.beforeDiscount %}
                {% endif %}
                {% if product.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if product.item.url %}
                {{ product.item.url }}
                {{ product.item.url.absolute }}
                {{ product.item.url.path }}
        {% endif %}
        {% if product.item.variant %}
                {{ product.item.variant.id }}
                {{ product.item.variant.name }}
                {{ product.item.variant.trackingId }}
                {% if product.item.variant.active %} ... {% endif %}
                {% if product.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in product.item.variant.enumValues %}
                {% endfor %}
                {% for image in product.item.variant.images %}
                {% endfor %}
                {% for upsell in product.item.variant.availableUpsells %}
                {% endfor %}
                {% if product.item.variant.legacyRel %}
                        {{ product.item.variant.legacyRel }}
                {% endif %}
                {% if product.item.variant.image %}
                {% endif %}
        {% endif %}
        {% for label in product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                        {{ label.image.originalHeight }}
                        {{ label.image.originalWidth }}
                        {{ label.image.url }}
                        {% if label.image.alt %}
                                {{ label.image.alt }}
                        {% endif %}
                        {% if label.image.text %}
                                {{ label.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {{ productEnumValue.enum.id }}
                {{ productEnumValue.enum.name }}
                {% for enumValue in productEnumValue.enum.values %}
                {% endfor %}
                {% if productEnumValue.enum.text %}
                        {{ productEnumValue.enum.text }}
                {% endif %}
                {% if productEnumValue.enum.meaning %}
                {% endif %}
                {{ productEnumValue.url }}
                {{ productEnumValue.url.absolute }}
                {{ productEnumValue.url.path }}
                {% for variant in productEnumValue.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                        {{ productEnumValue.image.originalHeight }}
                        {{ productEnumValue.image.originalWidth }}
                        {{ productEnumValue.image.url }}
                        {% if productEnumValue.image.alt %}
                                {{ productEnumValue.image.alt }}
                        {% endif %}
                        {% if productEnumValue.image.text %}
                                {{ productEnumValue.image.text }}
                        {% endif %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                        {{ productEnumValue.variantImage.originalHeight }}
                        {{ productEnumValue.variantImage.originalWidth }}
                        {{ productEnumValue.variantImage.url }}
                        {% if productEnumValue.variantImage.alt %}
                                {{ productEnumValue.variantImage.alt }}
                        {% endif %}
                        {% if productEnumValue.variantImage.text %}
                                {{ productEnumValue.variantImage.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ product.rating.count }}
        {% if product.rating.voted %} ... {% endif %}
        {% if product.rating.average %}
                {{ product.rating.average }}
        {% endif %}
        {% for upsell in product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ product.url }}
        {{ product.url.absolute }}
        {{ product.url.path }}
        {% for variantChoiceStep in product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                        {{ variantChoice.inputValue }}
                        {{ variantChoice.name }}
                        {% if variantChoice.selected %} ... {% endif %}
                        {% if variantChoice.color %}
                                {{ variantChoice.color }}
                        {% endif %}
                        {% if variantChoice.description %}
                                {{ variantChoice.description }}
                        {% endif %}
                        {% if variantChoice.availability %}
                        {% endif %}
                        {% if variantChoice.bundle %}
                        {% endif %}
                        {% if variantChoice.icon %}
                        {% endif %}
                        {% if variantChoice.image %}
                        {% endif %}
                        {% if variantChoice.price %}
                        {% endif %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                        {{ variantChoiceStep.icon.originalHeight }}
                        {{ variantChoiceStep.icon.originalWidth }}
                        {{ variantChoiceStep.icon.url }}
                        {% if variantChoiceStep.icon.alt %}
                                {{ variantChoiceStep.icon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.icon.text %}
                                {{ variantChoiceStep.icon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                        {{ variantChoiceStep.infoIcon.originalHeight }}
                        {{ variantChoiceStep.infoIcon.originalWidth }}
                        {{ variantChoiceStep.infoIcon.url }}
                        {% if variantChoiceStep.infoIcon.alt %}
                                {{ variantChoiceStep.infoIcon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon.text %}
                                {{ variantChoiceStep.infoIcon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.info %}
                        {{ variantChoiceStep.info.id }}
                        {{ variantChoiceStep.info.name }}
                        {% for file in variantChoiceStep.info.files %}
                        {% endfor %}
                        {% for image in variantChoiceStep.info.images %}
                        {% endfor %}
                        {% for textPage in variantChoiceStep.info.subPages %}
                        {% endfor %}
                        {% for video in variantChoiceStep.info.videos %}
                        {% endfor %}
                        {% if variantChoiceStep.info.code %}
                                {{ variantChoiceStep.info.code }}
                        {% endif %}
                        {% if variantChoiceStep.info.text %}
                                {{ variantChoiceStep.info.text }}
                        {% endif %}
                        {% if variantChoiceStep.info.image %}
                        {% endif %}
                        {% if variantChoiceStep.info.contentGrid %}
                                {{ variantChoiceStep.info.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                        {{ variantChoiceStep.selectedChoice.inputValue }}
                        {{ variantChoiceStep.selectedChoice.name }}
                        {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.color %}
                                {{ variantChoiceStep.selectedChoice.color }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.description %}
                                {{ variantChoiceStep.selectedChoice.description }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.bundle %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.icon %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.image %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.enumValues %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.variants %}
                {% endfor %}
                {% for variant in variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.successor %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.enumValues %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.successor %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.enumValues %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.variants %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.successor %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ product.variantType.id }}
        {{ product.variantType.name }}
        {% for video in product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
                {{ product.attribute.name }}
                {{ product.attribute.valuesHtml }}
                {% for attributeValueInstance in product.attribute.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if product.attribute.description %}
                        {{ product.attribute.description }}
                {% endif %}
                {% if product.attribute.group %}
                        {{ product.attribute.group.id }}
                {% endif %}
                {% if product.attribute.image %}
                        {{ product.attribute.image.originalHeight }}
                        {{ product.attribute.image.originalWidth }}
                        {{ product.attribute.image.url }}
                        {% if product.attribute.image.alt %}
                                {{ product.attribute.image.alt }}
                        {% endif %}
                        {% if product.attribute.image.text %}
                                {{ product.attribute.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if product.brand %}
                {{ product.brand.id }}
                {{ product.brand.name }}
                {% if product.brand.flagImportant %} ... {% endif %}
                {% for category in product.brand.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ product.brand.url }}
                {{ product.brand.url.absolute }}
                {{ product.brand.url.path }}
                {{ product.brand.categoryUrl }}
                {{ product.brand.categoryUrl.absolute }}
                {{ product.brand.categoryUrl.path }}
                {% if product.brand.code %}
                        {{ product.brand.code }}
                {% endif %}
                {% if product.brand.web %}
                        {{ product.brand.web }}
                {% endif %}
                {% if product.brand.text %}
                        {{ product.brand.text }}
                {% endif %}
                {% if product.brand.image %}
                        {{ product.brand.image.originalHeight }}
                        {{ product.brand.image.originalWidth }}
                        {{ product.brand.image.url }}
                        {% if product.brand.image.alt %}
                                {{ product.brand.image.alt }}
                        {% endif %}
                        {% if product.brand.image.text %}
                                {{ product.brand.image.text }}
                        {% endif %}
                {% endif %}
                {% if product.brand.seo %}
                        {% if product.brand.seo.description %}
                                {{ product.brand.seo.description }}
                        {% endif %}
                        {% if product.brand.seo.keywords %}
                                {{ product.brand.seo.keywords }}
                        {% endif %}
                        {% if product.brand.seo.title %}
                                {{ product.brand.seo.title }}
                        {% endif %}
                {% endif %}
                {% if product.brand.contentGrid %}
                        {{ product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.imageForEnumValueId %}
                {{ product.imageForEnumValueId.originalHeight }}
                {{ product.imageForEnumValueId.originalWidth }}
                {{ product.imageForEnumValueId.url }}
                {% if product.imageForEnumValueId.alt %}
                        {{ product.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.imageForEnumValueId.text %}
                        {{ product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.image %}
                {{ product.image.originalHeight }}
                {{ product.image.originalWidth }}
                {{ product.image.url }}
                {% if product.image.alt %}
                        {{ product.image.alt }}
                {% endif %}
                {% if product.image.text %}
                        {{ product.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor %}
                {{ product.successor.id }}
                {{ product.successor.name }}
                {{ product.successor.trackingId }}
                {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if product.successor.active %} ... {% endif %}
                {% if product.successor.compared %} ... {% endif %}
                {% if product.successor.differentVariantPrices %} ... {% endif %}
                {% if product.successor.flagNew %} ... {% endif %}
                {% if product.successor.flagPromo %} ... {% endif %}
                {% if product.successor.flagSecondHand %} ... {% endif %}
                {% if product.successor.flagSellout %} ... {% endif %}
                {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.successor.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ product.successor.category.id }}
                {{ product.successor.category.productCount }}
                {{ product.successor.category.productInStockCount }}
                {{ product.successor.category.totalStockQuantity }}
                {{ product.successor.category.headline }}
                {{ product.successor.category.menuName }}
                {{ product.successor.category.name }}
                {% if product.successor.category.flagErotic %} ... {% endif %}
                {% if product.successor.category.flagImportant %} ... {% endif %}
                {% if product.successor.category.noFollow %} ... {% endif %}
                {% for category in product.successor.category.subcategories %}
                {% endfor %}
                {% for video in product.successor.category.videos %}
                {% endfor %}
                {{ product.successor.category.pathIds }}
                {{ product.successor.category.pathNames }}
                {{ product.successor.category.templateAttribute }}
                {% if product.successor.category.subHeadline %}
                        {{ product.successor.category.subHeadline }}
                {% endif %}
                {% if product.successor.category.text %}
                        {{ product.successor.category.text }}
                {% endif %}
                {% if product.successor.category.parent %}
                {% endif %}
                {% if product.successor.category.image %}
                {% endif %}
                {% if product.successor.category.contentGrid %}
                        {{ product.successor.category.contentGrid }}
                {% endif %}
                {% for category in product.successor.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in product.successor.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in product.successor.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ product.successor.item.id }}
                {{ product.successor.item.name }}
                {{ product.successor.item.trackingId }}
                {% if product.successor.item.digital %} ... {% endif %}
                {% if product.successor.item.sellable %} ... {% endif %}
                {% if product.successor.item.service %} ... {% endif %}
                {% for availableUpsellGroup in product.successor.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in product.successor.item.availableUpsells %}
                {% endfor %}
                {{ product.successor.item.trackingIds }}
                {{ product.successor.item.storageLocations }}
                {% if product.successor.item.packageHeight %}
                        {{ product.successor.item.packageHeight }}
                {% endif %}
                {% if product.successor.item.packageLength %}
                        {{ product.successor.item.packageLength }}
                {% endif %}
                {% if product.successor.item.packageWeight %}
                        {{ product.successor.item.packageWeight }}
                {% endif %}
                {% if product.successor.item.packageWidth %}
                        {{ product.successor.item.packageWidth }}
                {% endif %}
                {% if product.successor.item.code %}
                        {{ product.successor.item.code }}
                {% endif %}
                {% if product.successor.item.bundle %}
                {% endif %}
                {% if product.successor.item.cheapestDelivery %}
                {% endif %}
                {% if product.successor.item.freeDelivery %}
                {% endif %}
                {% if product.successor.item.closestFreeDelivery %}
                {% endif %}
                {% if product.successor.item.packageDimensions %}
                {% endif %}
                {% if product.successor.item.image %}
                {% endif %}
                {% if product.successor.item.price %}
                {% endif %}
                {% if product.successor.item.url %}
                {% endif %}
                {% if product.successor.item.variant %}
                {% endif %}
                {% for label in product.successor.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in product.successor.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {{ product.successor.rating.count }}
                {% if product.successor.rating.voted %} ... {% endif %}
                {% if product.successor.rating.average %}
                        {{ product.successor.rating.average }}
                {% endif %}
                {% for upsell in product.successor.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ product.successor.url }}
                {{ product.successor.url.absolute }}
                {{ product.successor.url.path }}
                {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.successor.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.successor.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.successor.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ product.successor.variantType.id }}
                {{ product.successor.variantType.name }}
                {% for video in product.successor.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ product.successor.trackingIds }}
                {% if product.successor.currentSubName %}
                        {{ product.successor.currentSubName }}
                {% endif %}
                {% if product.successor.nameSuffix %}
                        {{ product.successor.nameSuffix }}
                {% endif %}
                {% if product.successor.nameSupplier %}
                        {{ product.successor.nameSupplier }}
                {% endif %}
                {% if product.successor.text %}
                        {{ product.successor.text }}
                {% endif %}
                {% if product.successor.attribute %}
                        {{ product.successor.attribute.name }}
                        {{ product.successor.attribute.valuesHtml }}
                        {% for attributeValueInstance in product.successor.attribute.values %}
                        {% endfor %}
                        {% if product.successor.attribute.description %}
                                {{ product.successor.attribute.description }}
                        {% endif %}
                        {% if product.successor.attribute.group %}
                        {% endif %}
                        {% if product.successor.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if product.successor.brand %}
                        {{ product.successor.brand.id }}
                        {{ product.successor.brand.name }}
                        {% if product.successor.brand.flagImportant %} ... {% endif %}
                        {% for category in product.successor.brand.categories %}
                        {% endfor %}
                        {% if product.successor.brand.code %}
                                {{ product.successor.brand.code }}
                        {% endif %}
                        {% if product.successor.brand.web %}
                                {{ product.successor.brand.web }}
                        {% endif %}
                        {% if product.successor.brand.text %}
                                {{ product.successor.brand.text }}
                        {% endif %}
                        {% if product.successor.brand.image %}
                        {% endif %}
                        {% if product.successor.brand.seo %}
                        {% endif %}
                        {% if product.successor.brand.contentGrid %}
                                {{ product.successor.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if product.successor.imageForEnumValueId %}
                        {{ product.successor.imageForEnumValueId.originalHeight }}
                        {{ product.successor.imageForEnumValueId.originalWidth }}
                        {{ product.successor.imageForEnumValueId.url }}
                        {% if product.successor.imageForEnumValueId.alt %}
                                {{ product.successor.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if product.successor.imageForEnumValueId.text %}
                                {{ product.successor.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if product.successor.image %}
                        {{ product.successor.image.originalHeight }}
                        {{ product.successor.image.originalWidth }}
                        {{ product.successor.image.url }}
                        {% if product.successor.image.alt %}
                                {{ product.successor.image.alt }}
                        {% endif %}
                        {% if product.successor.image.text %}
                                {{ product.successor.image.text }}
                        {% endif %}
                {% endif %}
                {% if product.successor.seo %}
                        {% if product.successor.seo.description %}
                                {{ product.successor.seo.description }}
                        {% endif %}
                        {% if product.successor.seo.keywords %}
                                {{ product.successor.seo.keywords }}
                        {% endif %}
                        {% if product.successor.seo.title %}
                                {{ product.successor.seo.title }}
                        {% endif %}
                {% endif %}
                {% if product.successor.supplier %}
                        {{ product.successor.supplier.id }}
                        {{ product.successor.supplier.name }}
                {% endif %}
                {% if product.successor.unit %}
                        {{ product.successor.unit.name }}
                {% endif %}
                {% if product.successor.variant %}
                        {{ product.successor.variant.id }}
                        {{ product.successor.variant.name }}
                        {{ product.successor.variant.trackingId }}
                        {% if product.successor.variant.active %} ... {% endif %}
                        {% if product.successor.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in product.successor.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in product.successor.variant.enumValues %}
                        {% endfor %}
                        {% for image in product.successor.variant.images %}
                        {% endfor %}
                        {% for upsell in product.successor.variant.availableUpsells %}
                        {% endfor %}
                        {% if product.successor.variant.legacyRel %}
                                {{ product.successor.variant.legacyRel }}
                        {% endif %}
                        {% if product.successor.variant.image %}
                        {% endif %}
                {% endif %}
                {% if product.successor.warranty %}
                        {{ product.successor.warranty.months }}
                {% endif %}
                {% if product.successor.contentGrid %}
                        {{ product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.seo %}
                {% if product.seo.description %}
                        {{ product.seo.description }}
                {% endif %}
                {% if product.seo.keywords %}
                        {{ product.seo.keywords }}
                {% endif %}
                {% if product.seo.title %}
                        {{ product.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.supplier %}
                {{ product.supplier.id }}
                {{ product.supplier.name }}
        {% endif %}
        {% if product.unit %}
                {{ product.unit.name }}
        {% endif %}
        {% if product.variant %}
                {{ product.variant.id }}
                {{ product.variant.name }}
                {{ product.variant.trackingId }}
                {% if product.variant.active %} ... {% endif %}
                {% if product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in product.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in product.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ product.variant.item.id }}
                {{ product.variant.item.name }}
                {{ product.variant.item.trackingId }}
                {% if product.variant.item.digital %} ... {% endif %}
                {% if product.variant.item.sellable %} ... {% endif %}
                {% if product.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in product.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in product.variant.item.availableUpsells %}
                {% endfor %}
                {{ product.variant.item.trackingIds }}
                {{ product.variant.item.storageLocations }}
                {% if product.variant.item.packageHeight %}
                        {{ product.variant.item.packageHeight }}
                {% endif %}
                {% if product.variant.item.packageLength %}
                        {{ product.variant.item.packageLength }}
                {% endif %}
                {% if product.variant.item.packageWeight %}
                        {{ product.variant.item.packageWeight }}
                {% endif %}
                {% if product.variant.item.packageWidth %}
                        {{ product.variant.item.packageWidth }}
                {% endif %}
                {% if product.variant.item.code %}
                        {{ product.variant.item.code }}
                {% endif %}
                {% if product.variant.item.bundle %}
                {% endif %}
                {% if product.variant.item.cheapestDelivery %}
                {% endif %}
                {% if product.variant.item.freeDelivery %}
                {% endif %}
                {% if product.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if product.variant.item.packageDimensions %}
                {% endif %}
                {% if product.variant.item.image %}
                {% endif %}
                {% if product.variant.item.price %}
                {% endif %}
                {% if product.variant.item.url %}
                {% endif %}
                {{ product.variant.product.id }}
                {{ product.variant.product.name }}
                {{ product.variant.product.trackingId }}
                {{ product.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if product.variant.product.active %} ... {% endif %}
                {% if product.variant.product.compared %} ... {% endif %}
                {% if product.variant.product.differentVariantPrices %} ... {% endif %}
                {% if product.variant.product.flagNew %} ... {% endif %}
                {% if product.variant.product.flagPromo %} ... {% endif %}
                {% if product.variant.product.flagSecondHand %} ... {% endif %}
                {% if product.variant.product.flagSellout %} ... {% endif %}
                {% if product.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if product.variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.variant.product.categories %}
                {% endfor %}
                {% for category in product.variant.product.otherCategories %}
                {% endfor %}
                {% for file in product.variant.product.files %}
                {% endfor %}
                {% for image in product.variant.product.images %}
                {% endfor %}
                {% for image in product.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.variant.product.images360 %}
                {% endfor %}
                {% for image in product.variant.product.currentImages %}
                {% endfor %}
                {% for image in product.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.variant.product.otherImages %}
                {% endfor %}
                {% for label in product.variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in product.variant.product.enumValues %}
                {% endfor %}
                {% for upsell in product.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in product.variant.product.variants %}
                {% endfor %}
                {% for variant in product.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.variant.product.videos %}
                {% endfor %}
                {{ product.variant.product.trackingIds }}
                {% if product.variant.product.currentSubName %}
                        {{ product.variant.product.currentSubName }}
                {% endif %}
                {% if product.variant.product.nameSuffix %}
                        {{ product.variant.product.nameSuffix }}
                {% endif %}
                {% if product.variant.product.nameSupplier %}
                        {{ product.variant.product.nameSupplier }}
                {% endif %}
                {% if product.variant.product.text %}
                        {{ product.variant.product.text }}
                {% endif %}
                {% if product.variant.product.attribute %}
                {% endif %}
                {% if product.variant.product.brand %}
                {% endif %}
                {% if product.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if product.variant.product.image %}
                {% endif %}
                {% if product.variant.product.successor %}
                {% endif %}
                {% if product.variant.product.seo %}
                {% endif %}
                {% if product.variant.product.supplier %}
                {% endif %}
                {% if product.variant.product.unit %}
                {% endif %}
                {% if product.variant.product.warranty %}
                {% endif %}
                {% if product.variant.product.contentGrid %}
                        {{ product.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in product.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ product.variant.url }}
                {{ product.variant.url.absolute }}
                {{ product.variant.url.path }}
                {% if product.variant.legacyRel %}
                        {{ product.variant.legacyRel }}
                {% endif %}
                {% if product.variant.image %}
                        {{ product.variant.image.originalHeight }}
                        {{ product.variant.image.originalWidth }}
                        {{ product.variant.image.url }}
                        {% if product.variant.image.alt %}
                                {{ product.variant.image.alt }}
                        {% endif %}
                        {% if product.variant.image.text %}
                                {{ product.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if product.warranty %}
                {{ product.warranty.months }}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ product.rating.count }}
{% if product.rating.voted %} ... {% endif %}
{% if product.rating.average %}
        {{ product.rating.average }}
{% endif %}

{% for upsell in product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ product.url }}
{{ product.url.absolute }}
{{ product.url.path }}

{% for variantChoiceStep in product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
                {{ variantChoice.inputValue }}
                {{ variantChoice.name }}
                {% if variantChoice.selected %} ... {% endif %}
                {% if variantChoice.color %}
                        {{ variantChoice.color }}
                {% endif %}
                {% if variantChoice.description %}
                        {{ variantChoice.description }}
                {% endif %}
                {% if variantChoice.availability %}
                        {{ variantChoice.availability.availableAmount }}
                        {{ variantChoice.availability.availableAmountInShowroom }}
                        {{ variantChoice.availability.availableAmountInStockroom }}
                        {{ variantChoice.availability.availableAmountInStorageCenter }}
                        {{ variantChoice.availability.hours }}
                        {{ variantChoice.availability.totalAmount }}
                        {% if variantChoice.availability.inShowroom %} ... {% endif %}
                        {% if variantChoice.availability.inStock %} ... {% endif %}
                        {% if variantChoice.availability.preorder %} ... {% endif %}
                        {% if variantChoice.availability.watchdogSupported %} ... {% endif %}
                        {% for deliveryOption in variantChoice.availability.deliveryOptions %}
                        {% endfor %}
                        {% if variantChoice.availability.text %}
                                {{ variantChoice.availability.text }}
                        {% endif %}
                        {% if variantChoice.availability.dateExpected %}
                                {{ variantChoice.availability.dateExpected|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if variantChoice.availability.deliveryOption %}
                        {% endif %}
                {% endif %}
                {% if variantChoice.bundle %}
                        {% if variantChoice.bundle.multiPack %} ... {% endif %}
                        {% if variantChoice.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if variantChoice.icon %}
                        {{ variantChoice.icon.originalHeight }}
                        {{ variantChoice.icon.originalWidth }}
                        {{ variantChoice.icon.url }}
                        {% if variantChoice.icon.alt %}
                                {{ variantChoice.icon.alt }}
                        {% endif %}
                        {% if variantChoice.icon.text %}
                                {{ variantChoice.icon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoice.image %}
                        {{ variantChoice.image.originalHeight }}
                        {{ variantChoice.image.originalWidth }}
                        {{ variantChoice.image.url }}
                        {% if variantChoice.image.alt %}
                                {{ variantChoice.image.alt }}
                        {% endif %}
                        {% if variantChoice.image.text %}
                                {{ variantChoice.image.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoice.price %}
                        {{ variantChoice.price.vatRate }}
                        {% if variantChoice.price.discountPercent %}
                                {{ variantChoice.price.discountPercent }}
                        {% endif %}
                        {% if variantChoice.price.discountValidTo %}
                                {{ variantChoice.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if variantChoice.price.beforeDiscount %}
                        {% endif %}
                        {% if variantChoice.price.discount %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
                {{ variantChoiceStep.icon.originalHeight }}
                {{ variantChoiceStep.icon.originalWidth }}
                {{ variantChoiceStep.icon.url }}
                {% if variantChoiceStep.icon.alt %}
                        {{ variantChoiceStep.icon.alt }}
                {% endif %}
                {% if variantChoiceStep.icon.text %}
                        {{ variantChoiceStep.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
                {{ variantChoiceStep.infoIcon.originalHeight }}
                {{ variantChoiceStep.infoIcon.originalWidth }}
                {{ variantChoiceStep.infoIcon.url }}
                {% if variantChoiceStep.infoIcon.alt %}
                        {{ variantChoiceStep.infoIcon.alt }}
                {% endif %}
                {% if variantChoiceStep.infoIcon.text %}
                        {{ variantChoiceStep.infoIcon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.info %}
                {{ variantChoiceStep.info.id }}
                {{ variantChoiceStep.info.name }}
                {% for file in variantChoiceStep.info.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in variantChoiceStep.info.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for textPage in variantChoiceStep.info.subPages %}
                        {{ textPage.id }}
                        {{ textPage.name }}
                        {% for file in textPage.files %}
                        {% endfor %}
                        {% for image in textPage.images %}
                        {% endfor %}
                        {% for video in textPage.videos %}
                        {% endfor %}
                        {% if textPage.code %}
                                {{ textPage.code }}
                        {% endif %}
                        {% if textPage.text %}
                                {{ textPage.text }}
                        {% endif %}
                        {% if textPage.image %}
                        {% endif %}
                        {% if textPage.contentGrid %}
                                {{ textPage.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ variantChoiceStep.info.url }}
                {{ variantChoiceStep.info.url.absolute }}
                {{ variantChoiceStep.info.url.path }}
                {% for video in variantChoiceStep.info.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {% if variantChoiceStep.info.code %}
                        {{ variantChoiceStep.info.code }}
                {% endif %}
                {% if variantChoiceStep.info.text %}
                        {{ variantChoiceStep.info.text }}
                {% endif %}
                {% if variantChoiceStep.info.image %}
                        {{ variantChoiceStep.info.image.originalHeight }}
                        {{ variantChoiceStep.info.image.originalWidth }}
                        {{ variantChoiceStep.info.image.url }}
                        {% if variantChoiceStep.info.image.alt %}
                                {{ variantChoiceStep.info.image.alt }}
                        {% endif %}
                        {% if variantChoiceStep.info.image.text %}
                                {{ variantChoiceStep.info.image.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.info.contentGrid %}
                        {{ variantChoiceStep.info.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
                {{ variantChoiceStep.selectedChoice.inputValue }}
                {{ variantChoiceStep.selectedChoice.name }}
                {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                {% if variantChoiceStep.selectedChoice.color %}
                        {{ variantChoiceStep.selectedChoice.color }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.description %}
                        {{ variantChoiceStep.selectedChoice.description }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.availability %}
                        {{ variantChoiceStep.selectedChoice.availability.availableAmount }}
                        {{ variantChoiceStep.selectedChoice.availability.availableAmountInShowroom }}
                        {{ variantChoiceStep.selectedChoice.availability.availableAmountInStockroom }}
                        {{ variantChoiceStep.selectedChoice.availability.availableAmountInStorageCenter }}
                        {{ variantChoiceStep.selectedChoice.availability.hours }}
                        {{ variantChoiceStep.selectedChoice.availability.totalAmount }}
                        {% if variantChoiceStep.selectedChoice.availability.inShowroom %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability.inStock %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability.preorder %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability.watchdogSupported %} ... {% endif %}
                        {% for deliveryOption in variantChoiceStep.selectedChoice.availability.deliveryOptions %}
                        {% endfor %}
                        {% if variantChoiceStep.selectedChoice.availability.text %}
                                {{ variantChoiceStep.selectedChoice.availability.text }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability.dateExpected %}
                                {{ variantChoiceStep.selectedChoice.availability.dateExpected|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability.deliveryOption %}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.bundle %}
                        {% if variantChoiceStep.selectedChoice.bundle.multiPack %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.bundle.price %}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.icon %}
                        {{ variantChoiceStep.selectedChoice.icon.originalHeight }}
                        {{ variantChoiceStep.selectedChoice.icon.originalWidth }}
                        {{ variantChoiceStep.selectedChoice.icon.url }}
                        {% if variantChoiceStep.selectedChoice.icon.alt %}
                                {{ variantChoiceStep.selectedChoice.icon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.icon.text %}
                                {{ variantChoiceStep.selectedChoice.icon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.image %}
                        {{ variantChoiceStep.selectedChoice.image.originalHeight }}
                        {{ variantChoiceStep.selectedChoice.image.originalWidth }}
                        {{ variantChoiceStep.selectedChoice.image.url }}
                        {% if variantChoiceStep.selectedChoice.image.alt %}
                                {{ variantChoiceStep.selectedChoice.image.alt }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.image.text %}
                                {{ variantChoiceStep.selectedChoice.image.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.price %}
                        {{ variantChoiceStep.selectedChoice.price.vatRate }}
                        {% if variantChoiceStep.selectedChoice.price.discountPercent %}
                                {{ variantChoiceStep.selectedChoice.price.discountPercent }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price.discountValidTo %}
                                {{ variantChoiceStep.selectedChoice.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price.beforeDiscount %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price.discount %}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}

{% for variant in product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {{ variant.item.availability.availableAmount }}
        {{ variant.item.availability.availableAmountInShowroom }}
        {{ variant.item.availability.availableAmountInStockroom }}
        {{ variant.item.availability.availableAmountInStorageCenter }}
        {{ variant.item.availability.hours }}
        {{ variant.item.availability.totalAmount }}
        {% if variant.item.availability.inShowroom %} ... {% endif %}
        {% if variant.item.availability.inStock %} ... {% endif %}
        {% if variant.item.availability.preorder %} ... {% endif %}
        {% if variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if variant.item.availability.text %}
                {{ variant.item.availability.text }}
        {% endif %}
        {% if variant.item.availability.dateExpected %}
                {{ variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.item.product.id }}
        {{ variant.item.product.name }}
        {{ variant.item.product.trackingId }}
        {{ variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.item.product.active %} ... {% endif %}
        {% if variant.item.product.compared %} ... {% endif %}
        {% if variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if variant.item.product.flagNew %} ... {% endif %}
        {% if variant.item.product.flagPromo %} ... {% endif %}
        {% if variant.item.product.flagSecondHand %} ... {% endif %}
        {% if variant.item.product.flagSellout %} ... {% endif %}
        {% if variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in variant.item.product.categories %}
        {% endfor %}
        {% for category in variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in variant.item.product.files %}
        {% endfor %}
        {% for image in variant.item.product.images %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.images360 %}
        {% endfor %}
        {% for image in variant.item.product.currentImages %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.otherImages %}
        {% endfor %}
        {% for label in variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in variant.item.product.enumValues %}
        {% endfor %}
        {% for product in variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in variant.item.product.variants %}
        {% endfor %}
        {% for variant in variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in variant.item.product.videos %}
        {% endfor %}
        {{ variant.item.product.trackingIds }}
        {% if variant.item.product.currentSubName %}
                {{ variant.item.product.currentSubName }}
        {% endif %}
        {% if variant.item.product.nameSuffix %}
                {{ variant.item.product.nameSuffix }}
        {% endif %}
        {% if variant.item.product.nameSupplier %}
                {{ variant.item.product.nameSupplier }}
        {% endif %}
        {% if variant.item.product.text %}
                {{ variant.item.product.text }}
        {% endif %}
        {% if variant.item.product.attribute %}
        {% endif %}
        {% if variant.item.product.brand %}
        {% endif %}
        {% if variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if variant.item.product.image %}
        {% endif %}
        {% if variant.item.product.successor %}
        {% endif %}
        {% if variant.item.product.seo %}
        {% endif %}
        {% if variant.item.product.supplier %}
        {% endif %}
        {% if variant.item.product.unit %}
        {% endif %}
        {% if variant.item.product.variant %}
        {% endif %}
        {% if variant.item.product.warranty %}
        {% endif %}
        {% if variant.item.product.contentGrid %}
                {{ variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
                {% if variant.item.bundle.multiPack %} ... {% endif %}
                {% if variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
                {{ variant.item.cheapestDelivery.inputId }}
                {{ variant.item.cheapestDelivery.name }}
                {{ variant.item.cheapestDelivery.vatRate }}
                {% if variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if variant.item.cheapestDelivery.text %}
                        {{ variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if variant.item.freeDelivery %}
                {{ variant.item.freeDelivery.name }}
                {{ variant.item.freeDelivery.vatRate }}
                {% if variant.item.freeDelivery.id %}
                        {{ variant.item.freeDelivery.id }}
                {% endif %}
                {% if variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
                {{ variant.item.closestFreeDelivery.name }}
                {{ variant.item.closestFreeDelivery.vatRate }}
                {% if variant.item.closestFreeDelivery.id %}
                        {{ variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.packageDimensions %}
                {{ variant.item.packageDimensions }}
                {{ variant.item.packageDimensions.height }}
                {{ variant.item.packageDimensions.length }}
                {{ variant.item.packageDimensions.width }}
                {{ variant.item.packageDimensions.unit }}
        {% endif %}
        {% if variant.item.image %}
                {{ variant.item.image.originalHeight }}
                {{ variant.item.image.originalWidth }}
                {{ variant.item.image.url }}
                {% if variant.item.image.alt %}
                        {{ variant.item.image.alt }}
                {% endif %}
                {% if variant.item.image.text %}
                        {{ variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.item.price %}
                {{ variant.item.price.vatRate }}
                {% if variant.item.price.discountPercent %}
                        {{ variant.item.price.discountPercent }}
                {% endif %}
                {% if variant.item.price.discountValidTo %}
                        {{ variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variant.item.price.beforeDiscount %}
                {% endif %}
                {% if variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if variant.item.url %}
                {{ variant.item.url }}
                {{ variant.item.url.absolute }}
                {{ variant.item.url.path }}
        {% endif %}
        {% if variant.item.variant %}
                {{ variant.item.variant.id }}
                {{ variant.item.variant.name }}
                {{ variant.item.variant.trackingId }}
                {% if variant.item.variant.active %} ... {% endif %}
                {% if variant.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.item.variant.enumValues %}
                {% endfor %}
                {% for image in variant.item.variant.images %}
                {% endfor %}
                {% for upsell in variant.item.variant.availableUpsells %}
                {% endfor %}
                {% if variant.item.variant.legacyRel %}
                        {{ variant.item.variant.legacyRel }}
                {% endif %}
                {% if variant.item.variant.image %}
                {% endif %}
        {% endif %}
        {{ variant.product.id }}
        {{ variant.product.name }}
        {{ variant.product.trackingId }}
        {{ variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.product.active %} ... {% endif %}
        {% if variant.product.compared %} ... {% endif %}
        {% if variant.product.differentVariantPrices %} ... {% endif %}
        {% if variant.product.flagNew %} ... {% endif %}
        {% if variant.product.flagPromo %} ... {% endif %}
        {% if variant.product.flagSecondHand %} ... {% endif %}
        {% if variant.product.flagSellout %} ... {% endif %}
        {% if variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.product.category.id }}
        {{ variant.product.category.productCount }}
        {{ variant.product.category.productInStockCount }}
        {{ variant.product.category.totalStockQuantity }}
        {{ variant.product.category.headline }}
        {{ variant.product.category.menuName }}
        {{ variant.product.category.name }}
        {% if variant.product.category.flagErotic %} ... {% endif %}
        {% if variant.product.category.flagImportant %} ... {% endif %}
        {% if variant.product.category.noFollow %} ... {% endif %}
        {% for category in variant.product.category.subcategories %}
        {% endfor %}
        {% for video in variant.product.category.videos %}
        {% endfor %}
        {{ variant.product.category.pathIds }}
        {{ variant.product.category.pathNames }}
        {{ variant.product.category.templateAttribute }}
        {% if variant.product.category.subHeadline %}
                {{ variant.product.category.subHeadline }}
        {% endif %}
        {% if variant.product.category.text %}
                {{ variant.product.category.text }}
        {% endif %}
        {% if variant.product.category.parent %}
        {% endif %}
        {% if variant.product.category.image %}
        {% endif %}
        {% if variant.product.category.contentGrid %}
                {{ variant.product.category.contentGrid }}
        {% endif %}
        {% for category in variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.product.item.id }}
        {{ variant.product.item.name }}
        {{ variant.product.item.trackingId }}
        {% if variant.product.item.digital %} ... {% endif %}
        {% if variant.product.item.sellable %} ... {% endif %}
        {% if variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.product.item.availableUpsells %}
        {% endfor %}
        {{ variant.product.item.trackingIds }}
        {{ variant.product.item.storageLocations }}
        {% if variant.product.item.packageHeight %}
                {{ variant.product.item.packageHeight }}
        {% endif %}
        {% if variant.product.item.packageLength %}
                {{ variant.product.item.packageLength }}
        {% endif %}
        {% if variant.product.item.packageWeight %}
                {{ variant.product.item.packageWeight }}
        {% endif %}
        {% if variant.product.item.packageWidth %}
                {{ variant.product.item.packageWidth }}
        {% endif %}
        {% if variant.product.item.code %}
                {{ variant.product.item.code }}
        {% endif %}
        {% if variant.product.item.bundle %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if variant.product.item.freeDelivery %}
        {% endif %}
        {% if variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.product.item.packageDimensions %}
        {% endif %}
        {% if variant.product.item.image %}
        {% endif %}
        {% if variant.product.item.price %}
        {% endif %}
        {% if variant.product.item.url %}
        {% endif %}
        {% if variant.product.item.variant %}
        {% endif %}
        {% for label in variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variant.product.rating.count }}
        {% if variant.product.rating.voted %} ... {% endif %}
        {% if variant.product.rating.average %}
                {{ variant.product.rating.average }}
        {% endif %}
        {% for upsell in variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.product.url }}
        {{ variant.product.url.absolute }}
        {{ variant.product.url.path }}
        {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.variantType.id }}
        {{ variant.product.variantType.name }}
        {% for video in variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.trackingIds }}
        {% if variant.product.currentSubName %}
                {{ variant.product.currentSubName }}
        {% endif %}
        {% if variant.product.nameSuffix %}
                {{ variant.product.nameSuffix }}
        {% endif %}
        {% if variant.product.nameSupplier %}
                {{ variant.product.nameSupplier }}
        {% endif %}
        {% if variant.product.text %}
                {{ variant.product.text }}
        {% endif %}
        {% if variant.product.attribute %}
                {{ variant.product.attribute.name }}
                {{ variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in variant.product.attribute.values %}
                {% endfor %}
                {% if variant.product.attribute.description %}
                        {{ variant.product.attribute.description }}
                {% endif %}
                {% if variant.product.attribute.group %}
                {% endif %}
                {% if variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.brand %}
                {{ variant.product.brand.id }}
                {{ variant.product.brand.name }}
                {% if variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in variant.product.brand.categories %}
                {% endfor %}
                {% if variant.product.brand.code %}
                        {{ variant.product.brand.code }}
                {% endif %}
                {% if variant.product.brand.web %}
                        {{ variant.product.brand.web }}
                {% endif %}
                {% if variant.product.brand.text %}
                        {{ variant.product.brand.text }}
                {% endif %}
                {% if variant.product.brand.image %}
                {% endif %}
                {% if variant.product.brand.seo %}
                {% endif %}
                {% if variant.product.brand.contentGrid %}
                        {{ variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.imageForEnumValueId %}
                {{ variant.product.imageForEnumValueId.originalHeight }}
                {{ variant.product.imageForEnumValueId.originalWidth }}
                {{ variant.product.imageForEnumValueId.url }}
                {% if variant.product.imageForEnumValueId.alt %}
                        {{ variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if variant.product.imageForEnumValueId.text %}
                        {{ variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.image %}
                {{ variant.product.image.originalHeight }}
                {{ variant.product.image.originalWidth }}
                {{ variant.product.image.url }}
                {% if variant.product.image.alt %}
                        {{ variant.product.image.alt }}
                {% endif %}
                {% if variant.product.image.text %}
                        {{ variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor %}
                {{ variant.product.successor.id }}
                {{ variant.product.successor.name }}
                {{ variant.product.successor.trackingId }}
                {{ variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.successor.active %} ... {% endif %}
                {% if variant.product.successor.compared %} ... {% endif %}
                {% if variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if variant.product.successor.flagNew %} ... {% endif %}
                {% if variant.product.successor.flagPromo %} ... {% endif %}
                {% if variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if variant.product.successor.flagSellout %} ... {% endif %}
                {% if variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.successor.categories %}
                {% endfor %}
                {% for category in variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in variant.product.successor.files %}
                {% endfor %}
                {% for image in variant.product.successor.images %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.images360 %}
                {% endfor %}
                {% for image in variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.successor.variants %}
                {% endfor %}
                {% for variant in variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.successor.videos %}
                {% endfor %}
                {{ variant.product.successor.trackingIds }}
                {% if variant.product.successor.currentSubName %}
                        {{ variant.product.successor.currentSubName }}
                {% endif %}
                {% if variant.product.successor.nameSuffix %}
                        {{ variant.product.successor.nameSuffix }}
                {% endif %}
                {% if variant.product.successor.nameSupplier %}
                        {{ variant.product.successor.nameSupplier }}
                {% endif %}
                {% if variant.product.successor.text %}
                        {{ variant.product.successor.text }}
                {% endif %}
                {% if variant.product.successor.attribute %}
                {% endif %}
                {% if variant.product.successor.brand %}
                {% endif %}
                {% if variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.successor.image %}
                {% endif %}
                {% if variant.product.successor.seo %}
                {% endif %}
                {% if variant.product.successor.supplier %}
                {% endif %}
                {% if variant.product.successor.unit %}
                {% endif %}
                {% if variant.product.successor.variant %}
                {% endif %}
                {% if variant.product.successor.warranty %}
                {% endif %}
                {% if variant.product.successor.contentGrid %}
                        {{ variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.seo %}
                {% if variant.product.seo.description %}
                        {{ variant.product.seo.description }}
                {% endif %}
                {% if variant.product.seo.keywords %}
                        {{ variant.product.seo.keywords }}
                {% endif %}
                {% if variant.product.seo.title %}
                        {{ variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if variant.product.supplier %}
                {{ variant.product.supplier.id }}
                {{ variant.product.supplier.name }}
        {% endif %}
        {% if variant.product.unit %}
                {{ variant.product.unit.name }}
        {% endif %}
        {% if variant.product.variant %}
                {{ variant.product.variant.id }}
                {{ variant.product.variant.name }}
                {{ variant.product.variant.trackingId }}
                {% if variant.product.variant.active %} ... {% endif %}
                {% if variant.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.product.variant.enumValues %}
                {% endfor %}
                {% for image in variant.product.variant.images %}
                {% endfor %}
                {% for upsell in variant.product.variant.availableUpsells %}
                {% endfor %}
                {% if variant.product.variant.legacyRel %}
                        {{ variant.product.variant.legacyRel }}
                {% endif %}
                {% if variant.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.warranty %}
                {{ variant.product.warranty.months }}
        {% endif %}
        {% if variant.product.contentGrid %}
                {{ variant.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for variant in product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {{ variant.item.availability.availableAmount }}
        {{ variant.item.availability.availableAmountInShowroom }}
        {{ variant.item.availability.availableAmountInStockroom }}
        {{ variant.item.availability.availableAmountInStorageCenter }}
        {{ variant.item.availability.hours }}
        {{ variant.item.availability.totalAmount }}
        {% if variant.item.availability.inShowroom %} ... {% endif %}
        {% if variant.item.availability.inStock %} ... {% endif %}
        {% if variant.item.availability.preorder %} ... {% endif %}
        {% if variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if variant.item.availability.text %}
                {{ variant.item.availability.text }}
        {% endif %}
        {% if variant.item.availability.dateExpected %}
                {{ variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.item.product.id }}
        {{ variant.item.product.name }}
        {{ variant.item.product.trackingId }}
        {{ variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.item.product.active %} ... {% endif %}
        {% if variant.item.product.compared %} ... {% endif %}
        {% if variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if variant.item.product.flagNew %} ... {% endif %}
        {% if variant.item.product.flagPromo %} ... {% endif %}
        {% if variant.item.product.flagSecondHand %} ... {% endif %}
        {% if variant.item.product.flagSellout %} ... {% endif %}
        {% if variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in variant.item.product.categories %}
        {% endfor %}
        {% for category in variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in variant.item.product.files %}
        {% endfor %}
        {% for image in variant.item.product.images %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.images360 %}
        {% endfor %}
        {% for image in variant.item.product.currentImages %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.otherImages %}
        {% endfor %}
        {% for label in variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in variant.item.product.enumValues %}
        {% endfor %}
        {% for product in variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in variant.item.product.videos %}
        {% endfor %}
        {{ variant.item.product.trackingIds }}
        {% if variant.item.product.currentSubName %}
                {{ variant.item.product.currentSubName }}
        {% endif %}
        {% if variant.item.product.nameSuffix %}
                {{ variant.item.product.nameSuffix }}
        {% endif %}
        {% if variant.item.product.nameSupplier %}
                {{ variant.item.product.nameSupplier }}
        {% endif %}
        {% if variant.item.product.text %}
                {{ variant.item.product.text }}
        {% endif %}
        {% if variant.item.product.attribute %}
        {% endif %}
        {% if variant.item.product.brand %}
        {% endif %}
        {% if variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if variant.item.product.image %}
        {% endif %}
        {% if variant.item.product.successor %}
        {% endif %}
        {% if variant.item.product.seo %}
        {% endif %}
        {% if variant.item.product.supplier %}
        {% endif %}
        {% if variant.item.product.unit %}
        {% endif %}
        {% if variant.item.product.variant %}
        {% endif %}
        {% if variant.item.product.warranty %}
        {% endif %}
        {% if variant.item.product.contentGrid %}
                {{ variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
                {% if variant.item.bundle.multiPack %} ... {% endif %}
                {% if variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
                {{ variant.item.cheapestDelivery.inputId }}
                {{ variant.item.cheapestDelivery.name }}
                {{ variant.item.cheapestDelivery.vatRate }}
                {% if variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if variant.item.cheapestDelivery.text %}
                        {{ variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if variant.item.freeDelivery %}
                {{ variant.item.freeDelivery.name }}
                {{ variant.item.freeDelivery.vatRate }}
                {% if variant.item.freeDelivery.id %}
                        {{ variant.item.freeDelivery.id }}
                {% endif %}
                {% if variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
                {{ variant.item.closestFreeDelivery.name }}
                {{ variant.item.closestFreeDelivery.vatRate }}
                {% if variant.item.closestFreeDelivery.id %}
                        {{ variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.packageDimensions %}
                {{ variant.item.packageDimensions }}
                {{ variant.item.packageDimensions.height }}
                {{ variant.item.packageDimensions.length }}
                {{ variant.item.packageDimensions.width }}
                {{ variant.item.packageDimensions.unit }}
        {% endif %}
        {% if variant.item.image %}
                {{ variant.item.image.originalHeight }}
                {{ variant.item.image.originalWidth }}
                {{ variant.item.image.url }}
                {% if variant.item.image.alt %}
                        {{ variant.item.image.alt }}
                {% endif %}
                {% if variant.item.image.text %}
                        {{ variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.item.price %}
                {{ variant.item.price.vatRate }}
                {% if variant.item.price.discountPercent %}
                        {{ variant.item.price.discountPercent }}
                {% endif %}
                {% if variant.item.price.discountValidTo %}
                        {{ variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variant.item.price.beforeDiscount %}
                {% endif %}
                {% if variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if variant.item.url %}
                {{ variant.item.url }}
                {{ variant.item.url.absolute }}
                {{ variant.item.url.path }}
        {% endif %}
        {% if variant.item.variant %}
                {{ variant.item.variant.id }}
                {{ variant.item.variant.name }}
                {{ variant.item.variant.trackingId }}
                {% if variant.item.variant.active %} ... {% endif %}
                {% if variant.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.item.variant.enumValues %}
                {% endfor %}
                {% for image in variant.item.variant.images %}
                {% endfor %}
                {% for upsell in variant.item.variant.availableUpsells %}
                {% endfor %}
                {% if variant.item.variant.legacyRel %}
                        {{ variant.item.variant.legacyRel }}
                {% endif %}
                {% if variant.item.variant.image %}
                {% endif %}
        {% endif %}
        {{ variant.product.id }}
        {{ variant.product.name }}
        {{ variant.product.trackingId }}
        {{ variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.product.active %} ... {% endif %}
        {% if variant.product.compared %} ... {% endif %}
        {% if variant.product.differentVariantPrices %} ... {% endif %}
        {% if variant.product.flagNew %} ... {% endif %}
        {% if variant.product.flagPromo %} ... {% endif %}
        {% if variant.product.flagSecondHand %} ... {% endif %}
        {% if variant.product.flagSellout %} ... {% endif %}
        {% if variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.product.category.id }}
        {{ variant.product.category.productCount }}
        {{ variant.product.category.productInStockCount }}
        {{ variant.product.category.totalStockQuantity }}
        {{ variant.product.category.headline }}
        {{ variant.product.category.menuName }}
        {{ variant.product.category.name }}
        {% if variant.product.category.flagErotic %} ... {% endif %}
        {% if variant.product.category.flagImportant %} ... {% endif %}
        {% if variant.product.category.noFollow %} ... {% endif %}
        {% for category in variant.product.category.subcategories %}
        {% endfor %}
        {% for video in variant.product.category.videos %}
        {% endfor %}
        {{ variant.product.category.pathIds }}
        {{ variant.product.category.pathNames }}
        {{ variant.product.category.templateAttribute }}
        {% if variant.product.category.subHeadline %}
                {{ variant.product.category.subHeadline }}
        {% endif %}
        {% if variant.product.category.text %}
                {{ variant.product.category.text }}
        {% endif %}
        {% if variant.product.category.parent %}
        {% endif %}
        {% if variant.product.category.image %}
        {% endif %}
        {% if variant.product.category.contentGrid %}
                {{ variant.product.category.contentGrid }}
        {% endif %}
        {% for category in variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.product.item.id }}
        {{ variant.product.item.name }}
        {{ variant.product.item.trackingId }}
        {% if variant.product.item.digital %} ... {% endif %}
        {% if variant.product.item.sellable %} ... {% endif %}
        {% if variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.product.item.availableUpsells %}
        {% endfor %}
        {{ variant.product.item.trackingIds }}
        {{ variant.product.item.storageLocations }}
        {% if variant.product.item.packageHeight %}
                {{ variant.product.item.packageHeight }}
        {% endif %}
        {% if variant.product.item.packageLength %}
                {{ variant.product.item.packageLength }}
        {% endif %}
        {% if variant.product.item.packageWeight %}
                {{ variant.product.item.packageWeight }}
        {% endif %}
        {% if variant.product.item.packageWidth %}
                {{ variant.product.item.packageWidth }}
        {% endif %}
        {% if variant.product.item.code %}
                {{ variant.product.item.code }}
        {% endif %}
        {% if variant.product.item.bundle %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if variant.product.item.freeDelivery %}
        {% endif %}
        {% if variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.product.item.packageDimensions %}
        {% endif %}
        {% if variant.product.item.image %}
        {% endif %}
        {% if variant.product.item.price %}
        {% endif %}
        {% if variant.product.item.url %}
        {% endif %}
        {% if variant.product.item.variant %}
        {% endif %}
        {% for label in variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variant.product.rating.count }}
        {% if variant.product.rating.voted %} ... {% endif %}
        {% if variant.product.rating.average %}
                {{ variant.product.rating.average }}
        {% endif %}
        {% for upsell in variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.product.url }}
        {{ variant.product.url.absolute }}
        {{ variant.product.url.path }}
        {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.variantType.id }}
        {{ variant.product.variantType.name }}
        {% for video in variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.trackingIds }}
        {% if variant.product.currentSubName %}
                {{ variant.product.currentSubName }}
        {% endif %}
        {% if variant.product.nameSuffix %}
                {{ variant.product.nameSuffix }}
        {% endif %}
        {% if variant.product.nameSupplier %}
                {{ variant.product.nameSupplier }}
        {% endif %}
        {% if variant.product.text %}
                {{ variant.product.text }}
        {% endif %}
        {% if variant.product.attribute %}
                {{ variant.product.attribute.name }}
                {{ variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in variant.product.attribute.values %}
                {% endfor %}
                {% if variant.product.attribute.description %}
                        {{ variant.product.attribute.description }}
                {% endif %}
                {% if variant.product.attribute.group %}
                {% endif %}
                {% if variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.brand %}
                {{ variant.product.brand.id }}
                {{ variant.product.brand.name }}
                {% if variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in variant.product.brand.categories %}
                {% endfor %}
                {% if variant.product.brand.code %}
                        {{ variant.product.brand.code }}
                {% endif %}
                {% if variant.product.brand.web %}
                        {{ variant.product.brand.web }}
                {% endif %}
                {% if variant.product.brand.text %}
                        {{ variant.product.brand.text }}
                {% endif %}
                {% if variant.product.brand.image %}
                {% endif %}
                {% if variant.product.brand.seo %}
                {% endif %}
                {% if variant.product.brand.contentGrid %}
                        {{ variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.imageForEnumValueId %}
                {{ variant.product.imageForEnumValueId.originalHeight }}
                {{ variant.product.imageForEnumValueId.originalWidth }}
                {{ variant.product.imageForEnumValueId.url }}
                {% if variant.product.imageForEnumValueId.alt %}
                        {{ variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if variant.product.imageForEnumValueId.text %}
                        {{ variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.image %}
                {{ variant.product.image.originalHeight }}
                {{ variant.product.image.originalWidth }}
                {{ variant.product.image.url }}
                {% if variant.product.image.alt %}
                        {{ variant.product.image.alt }}
                {% endif %}
                {% if variant.product.image.text %}
                        {{ variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor %}
                {{ variant.product.successor.id }}
                {{ variant.product.successor.name }}
                {{ variant.product.successor.trackingId }}
                {{ variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.successor.active %} ... {% endif %}
                {% if variant.product.successor.compared %} ... {% endif %}
                {% if variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if variant.product.successor.flagNew %} ... {% endif %}
                {% if variant.product.successor.flagPromo %} ... {% endif %}
                {% if variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if variant.product.successor.flagSellout %} ... {% endif %}
                {% if variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.successor.categories %}
                {% endfor %}
                {% for category in variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in variant.product.successor.files %}
                {% endfor %}
                {% for image in variant.product.successor.images %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.images360 %}
                {% endfor %}
                {% for image in variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.successor.videos %}
                {% endfor %}
                {{ variant.product.successor.trackingIds }}
                {% if variant.product.successor.currentSubName %}
                        {{ variant.product.successor.currentSubName }}
                {% endif %}
                {% if variant.product.successor.nameSuffix %}
                        {{ variant.product.successor.nameSuffix }}
                {% endif %}
                {% if variant.product.successor.nameSupplier %}
                        {{ variant.product.successor.nameSupplier }}
                {% endif %}
                {% if variant.product.successor.text %}
                        {{ variant.product.successor.text }}
                {% endif %}
                {% if variant.product.successor.attribute %}
                {% endif %}
                {% if variant.product.successor.brand %}
                {% endif %}
                {% if variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.successor.image %}
                {% endif %}
                {% if variant.product.successor.seo %}
                {% endif %}
                {% if variant.product.successor.supplier %}
                {% endif %}
                {% if variant.product.successor.unit %}
                {% endif %}
                {% if variant.product.successor.variant %}
                {% endif %}
                {% if variant.product.successor.warranty %}
                {% endif %}
                {% if variant.product.successor.contentGrid %}
                        {{ variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.seo %}
                {% if variant.product.seo.description %}
                        {{ variant.product.seo.description }}
                {% endif %}
                {% if variant.product.seo.keywords %}
                        {{ variant.product.seo.keywords }}
                {% endif %}
                {% if variant.product.seo.title %}
                        {{ variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if variant.product.supplier %}
                {{ variant.product.supplier.id }}
                {{ variant.product.supplier.name }}
        {% endif %}
        {% if variant.product.unit %}
                {{ variant.product.unit.name }}
        {% endif %}
        {% if variant.product.variant %}
                {{ variant.product.variant.id }}
                {{ variant.product.variant.name }}
                {{ variant.product.variant.trackingId }}
                {% if variant.product.variant.active %} ... {% endif %}
                {% if variant.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.product.variant.enumValues %}
                {% endfor %}
                {% for image in variant.product.variant.images %}
                {% endfor %}
                {% for upsell in variant.product.variant.availableUpsells %}
                {% endfor %}
                {% if variant.product.variant.legacyRel %}
                        {{ variant.product.variant.legacyRel }}
                {% endif %}
                {% if variant.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.warranty %}
                {{ variant.product.warranty.months }}
        {% endif %}
        {% if variant.product.contentGrid %}
                {{ variant.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for variant in product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {{ variant.item.availability.availableAmount }}
        {{ variant.item.availability.availableAmountInShowroom }}
        {{ variant.item.availability.availableAmountInStockroom }}
        {{ variant.item.availability.availableAmountInStorageCenter }}
        {{ variant.item.availability.hours }}
        {{ variant.item.availability.totalAmount }}
        {% if variant.item.availability.inShowroom %} ... {% endif %}
        {% if variant.item.availability.inStock %} ... {% endif %}
        {% if variant.item.availability.preorder %} ... {% endif %}
        {% if variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if variant.item.availability.text %}
                {{ variant.item.availability.text }}
        {% endif %}
        {% if variant.item.availability.dateExpected %}
                {{ variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.item.product.id }}
        {{ variant.item.product.name }}
        {{ variant.item.product.trackingId }}
        {{ variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.item.product.active %} ... {% endif %}
        {% if variant.item.product.compared %} ... {% endif %}
        {% if variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if variant.item.product.flagNew %} ... {% endif %}
        {% if variant.item.product.flagPromo %} ... {% endif %}
        {% if variant.item.product.flagSecondHand %} ... {% endif %}
        {% if variant.item.product.flagSellout %} ... {% endif %}
        {% if variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in variant.item.product.categories %}
        {% endfor %}
        {% for category in variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in variant.item.product.files %}
        {% endfor %}
        {% for image in variant.item.product.images %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.images360 %}
        {% endfor %}
        {% for image in variant.item.product.currentImages %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.otherImages %}
        {% endfor %}
        {% for label in variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in variant.item.product.enumValues %}
        {% endfor %}
        {% for product in variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in variant.item.product.variants %}
        {% endfor %}
        {% for video in variant.item.product.videos %}
        {% endfor %}
        {{ variant.item.product.trackingIds }}
        {% if variant.item.product.currentSubName %}
                {{ variant.item.product.currentSubName }}
        {% endif %}
        {% if variant.item.product.nameSuffix %}
                {{ variant.item.product.nameSuffix }}
        {% endif %}
        {% if variant.item.product.nameSupplier %}
                {{ variant.item.product.nameSupplier }}
        {% endif %}
        {% if variant.item.product.text %}
                {{ variant.item.product.text }}
        {% endif %}
        {% if variant.item.product.attribute %}
        {% endif %}
        {% if variant.item.product.brand %}
        {% endif %}
        {% if variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if variant.item.product.image %}
        {% endif %}
        {% if variant.item.product.successor %}
        {% endif %}
        {% if variant.item.product.seo %}
        {% endif %}
        {% if variant.item.product.supplier %}
        {% endif %}
        {% if variant.item.product.unit %}
        {% endif %}
        {% if variant.item.product.variant %}
        {% endif %}
        {% if variant.item.product.warranty %}
        {% endif %}
        {% if variant.item.product.contentGrid %}
                {{ variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
                {% if variant.item.bundle.multiPack %} ... {% endif %}
                {% if variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
                {{ variant.item.cheapestDelivery.inputId }}
                {{ variant.item.cheapestDelivery.name }}
                {{ variant.item.cheapestDelivery.vatRate }}
                {% if variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if variant.item.cheapestDelivery.text %}
                        {{ variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if variant.item.freeDelivery %}
                {{ variant.item.freeDelivery.name }}
                {{ variant.item.freeDelivery.vatRate }}
                {% if variant.item.freeDelivery.id %}
                        {{ variant.item.freeDelivery.id }}
                {% endif %}
                {% if variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
                {{ variant.item.closestFreeDelivery.name }}
                {{ variant.item.closestFreeDelivery.vatRate }}
                {% if variant.item.closestFreeDelivery.id %}
                        {{ variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.packageDimensions %}
                {{ variant.item.packageDimensions }}
                {{ variant.item.packageDimensions.height }}
                {{ variant.item.packageDimensions.length }}
                {{ variant.item.packageDimensions.width }}
                {{ variant.item.packageDimensions.unit }}
        {% endif %}
        {% if variant.item.image %}
                {{ variant.item.image.originalHeight }}
                {{ variant.item.image.originalWidth }}
                {{ variant.item.image.url }}
                {% if variant.item.image.alt %}
                        {{ variant.item.image.alt }}
                {% endif %}
                {% if variant.item.image.text %}
                        {{ variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.item.price %}
                {{ variant.item.price.vatRate }}
                {% if variant.item.price.discountPercent %}
                        {{ variant.item.price.discountPercent }}
                {% endif %}
                {% if variant.item.price.discountValidTo %}
                        {{ variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variant.item.price.beforeDiscount %}
                {% endif %}
                {% if variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if variant.item.url %}
                {{ variant.item.url }}
                {{ variant.item.url.absolute }}
                {{ variant.item.url.path }}
        {% endif %}
        {% if variant.item.variant %}
                {{ variant.item.variant.id }}
                {{ variant.item.variant.name }}
                {{ variant.item.variant.trackingId }}
                {% if variant.item.variant.active %} ... {% endif %}
                {% if variant.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.item.variant.enumValues %}
                {% endfor %}
                {% for image in variant.item.variant.images %}
                {% endfor %}
                {% for upsell in variant.item.variant.availableUpsells %}
                {% endfor %}
                {% if variant.item.variant.legacyRel %}
                        {{ variant.item.variant.legacyRel }}
                {% endif %}
                {% if variant.item.variant.image %}
                {% endif %}
        {% endif %}
        {{ variant.product.id }}
        {{ variant.product.name }}
        {{ variant.product.trackingId }}
        {{ variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.product.active %} ... {% endif %}
        {% if variant.product.compared %} ... {% endif %}
        {% if variant.product.differentVariantPrices %} ... {% endif %}
        {% if variant.product.flagNew %} ... {% endif %}
        {% if variant.product.flagPromo %} ... {% endif %}
        {% if variant.product.flagSecondHand %} ... {% endif %}
        {% if variant.product.flagSellout %} ... {% endif %}
        {% if variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.product.category.id }}
        {{ variant.product.category.productCount }}
        {{ variant.product.category.productInStockCount }}
        {{ variant.product.category.totalStockQuantity }}
        {{ variant.product.category.headline }}
        {{ variant.product.category.menuName }}
        {{ variant.product.category.name }}
        {% if variant.product.category.flagErotic %} ... {% endif %}
        {% if variant.product.category.flagImportant %} ... {% endif %}
        {% if variant.product.category.noFollow %} ... {% endif %}
        {% for category in variant.product.category.subcategories %}
        {% endfor %}
        {% for video in variant.product.category.videos %}
        {% endfor %}
        {{ variant.product.category.pathIds }}
        {{ variant.product.category.pathNames }}
        {{ variant.product.category.templateAttribute }}
        {% if variant.product.category.subHeadline %}
                {{ variant.product.category.subHeadline }}
        {% endif %}
        {% if variant.product.category.text %}
                {{ variant.product.category.text }}
        {% endif %}
        {% if variant.product.category.parent %}
        {% endif %}
        {% if variant.product.category.image %}
        {% endif %}
        {% if variant.product.category.contentGrid %}
                {{ variant.product.category.contentGrid }}
        {% endif %}
        {% for category in variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.product.item.id }}
        {{ variant.product.item.name }}
        {{ variant.product.item.trackingId }}
        {% if variant.product.item.digital %} ... {% endif %}
        {% if variant.product.item.sellable %} ... {% endif %}
        {% if variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.product.item.availableUpsells %}
        {% endfor %}
        {{ variant.product.item.trackingIds }}
        {{ variant.product.item.storageLocations }}
        {% if variant.product.item.packageHeight %}
                {{ variant.product.item.packageHeight }}
        {% endif %}
        {% if variant.product.item.packageLength %}
                {{ variant.product.item.packageLength }}
        {% endif %}
        {% if variant.product.item.packageWeight %}
                {{ variant.product.item.packageWeight }}
        {% endif %}
        {% if variant.product.item.packageWidth %}
                {{ variant.product.item.packageWidth }}
        {% endif %}
        {% if variant.product.item.code %}
                {{ variant.product.item.code }}
        {% endif %}
        {% if variant.product.item.bundle %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if variant.product.item.freeDelivery %}
        {% endif %}
        {% if variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.product.item.packageDimensions %}
        {% endif %}
        {% if variant.product.item.image %}
        {% endif %}
        {% if variant.product.item.price %}
        {% endif %}
        {% if variant.product.item.url %}
        {% endif %}
        {% if variant.product.item.variant %}
        {% endif %}
        {% for label in variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variant.product.rating.count }}
        {% if variant.product.rating.voted %} ... {% endif %}
        {% if variant.product.rating.average %}
                {{ variant.product.rating.average }}
        {% endif %}
        {% for upsell in variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.product.url }}
        {{ variant.product.url.absolute }}
        {{ variant.product.url.path }}
        {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.variantType.id }}
        {{ variant.product.variantType.name }}
        {% for video in variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.trackingIds }}
        {% if variant.product.currentSubName %}
                {{ variant.product.currentSubName }}
        {% endif %}
        {% if variant.product.nameSuffix %}
                {{ variant.product.nameSuffix }}
        {% endif %}
        {% if variant.product.nameSupplier %}
                {{ variant.product.nameSupplier }}
        {% endif %}
        {% if variant.product.text %}
                {{ variant.product.text }}
        {% endif %}
        {% if variant.product.attribute %}
                {{ variant.product.attribute.name }}
                {{ variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in variant.product.attribute.values %}
                {% endfor %}
                {% if variant.product.attribute.description %}
                        {{ variant.product.attribute.description }}
                {% endif %}
                {% if variant.product.attribute.group %}
                {% endif %}
                {% if variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.brand %}
                {{ variant.product.brand.id }}
                {{ variant.product.brand.name }}
                {% if variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in variant.product.brand.categories %}
                {% endfor %}
                {% if variant.product.brand.code %}
                        {{ variant.product.brand.code }}
                {% endif %}
                {% if variant.product.brand.web %}
                        {{ variant.product.brand.web }}
                {% endif %}
                {% if variant.product.brand.text %}
                        {{ variant.product.brand.text }}
                {% endif %}
                {% if variant.product.brand.image %}
                {% endif %}
                {% if variant.product.brand.seo %}
                {% endif %}
                {% if variant.product.brand.contentGrid %}
                        {{ variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.imageForEnumValueId %}
                {{ variant.product.imageForEnumValueId.originalHeight }}
                {{ variant.product.imageForEnumValueId.originalWidth }}
                {{ variant.product.imageForEnumValueId.url }}
                {% if variant.product.imageForEnumValueId.alt %}
                        {{ variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if variant.product.imageForEnumValueId.text %}
                        {{ variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.image %}
                {{ variant.product.image.originalHeight }}
                {{ variant.product.image.originalWidth }}
                {{ variant.product.image.url }}
                {% if variant.product.image.alt %}
                        {{ variant.product.image.alt }}
                {% endif %}
                {% if variant.product.image.text %}
                        {{ variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor %}
                {{ variant.product.successor.id }}
                {{ variant.product.successor.name }}
                {{ variant.product.successor.trackingId }}
                {{ variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.successor.active %} ... {% endif %}
                {% if variant.product.successor.compared %} ... {% endif %}
                {% if variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if variant.product.successor.flagNew %} ... {% endif %}
                {% if variant.product.successor.flagPromo %} ... {% endif %}
                {% if variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if variant.product.successor.flagSellout %} ... {% endif %}
                {% if variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.successor.categories %}
                {% endfor %}
                {% for category in variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in variant.product.successor.files %}
                {% endfor %}
                {% for image in variant.product.successor.images %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.images360 %}
                {% endfor %}
                {% for image in variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.successor.variants %}
                {% endfor %}
                {% for video in variant.product.successor.videos %}
                {% endfor %}
                {{ variant.product.successor.trackingIds }}
                {% if variant.product.successor.currentSubName %}
                        {{ variant.product.successor.currentSubName }}
                {% endif %}
                {% if variant.product.successor.nameSuffix %}
                        {{ variant.product.successor.nameSuffix }}
                {% endif %}
                {% if variant.product.successor.nameSupplier %}
                        {{ variant.product.successor.nameSupplier }}
                {% endif %}
                {% if variant.product.successor.text %}
                        {{ variant.product.successor.text }}
                {% endif %}
                {% if variant.product.successor.attribute %}
                {% endif %}
                {% if variant.product.successor.brand %}
                {% endif %}
                {% if variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.successor.image %}
                {% endif %}
                {% if variant.product.successor.seo %}
                {% endif %}
                {% if variant.product.successor.supplier %}
                {% endif %}
                {% if variant.product.successor.unit %}
                {% endif %}
                {% if variant.product.successor.variant %}
                {% endif %}
                {% if variant.product.successor.warranty %}
                {% endif %}
                {% if variant.product.successor.contentGrid %}
                        {{ variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.seo %}
                {% if variant.product.seo.description %}
                        {{ variant.product.seo.description }}
                {% endif %}
                {% if variant.product.seo.keywords %}
                        {{ variant.product.seo.keywords }}
                {% endif %}
                {% if variant.product.seo.title %}
                        {{ variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if variant.product.supplier %}
                {{ variant.product.supplier.id }}
                {{ variant.product.supplier.name }}
        {% endif %}
        {% if variant.product.unit %}
                {{ variant.product.unit.name }}
        {% endif %}
        {% if variant.product.variant %}
                {{ variant.product.variant.id }}
                {{ variant.product.variant.name }}
                {{ variant.product.variant.trackingId }}
                {% if variant.product.variant.active %} ... {% endif %}
                {% if variant.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.product.variant.enumValues %}
                {% endfor %}
                {% for image in variant.product.variant.images %}
                {% endfor %}
                {% for upsell in variant.product.variant.availableUpsells %}
                {% endfor %}
                {% if variant.product.variant.legacyRel %}
                        {{ variant.product.variant.legacyRel }}
                {% endif %}
                {% if variant.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.warranty %}
                {{ variant.product.warranty.months }}
        {% endif %}
        {% if variant.product.contentGrid %}
                {{ variant.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ product.variantType.id }}
{{ product.variantType.name }}

{% for video in product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ product.trackingIds }}

{% if product.currentSubName %}
        {{ product.currentSubName }}
{% endif %}

{% if product.nameSuffix %}
        {{ product.nameSuffix }}
{% endif %}

{% if product.nameSupplier %}
        {{ product.nameSupplier }}
{% endif %}

{% if product.text %}
        {{ product.text }}
{% endif %}

{% if product.attribute %}
        {{ product.attribute.name }}
        {{ product.attribute.valuesHtml }}
        {% for attributeValueInstance in product.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if product.attribute.description %}
                {{ product.attribute.description }}
        {% endif %}
        {% if product.attribute.group %}
                {{ product.attribute.group.id }}
        {% endif %}
        {% if product.attribute.image %}
                {{ product.attribute.image.originalHeight }}
                {{ product.attribute.image.originalWidth }}
                {{ product.attribute.image.url }}
                {% if product.attribute.image.alt %}
                        {{ product.attribute.image.alt }}
                {% endif %}
                {% if product.attribute.image.text %}
                        {{ product.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if product.brand %}
        {{ product.brand.id }}
        {{ product.brand.name }}
        {% if product.brand.flagImportant %} ... {% endif %}
        {% for category in product.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ product.brand.url }}
        {{ product.brand.url.absolute }}
        {{ product.brand.url.path }}
        {{ product.brand.categoryUrl }}
        {{ product.brand.categoryUrl.absolute }}
        {{ product.brand.categoryUrl.path }}
        {% if product.brand.code %}
                {{ product.brand.code }}
        {% endif %}
        {% if product.brand.web %}
                {{ product.brand.web }}
        {% endif %}
        {% if product.brand.text %}
                {{ product.brand.text }}
        {% endif %}
        {% if product.brand.image %}
                {{ product.brand.image.originalHeight }}
                {{ product.brand.image.originalWidth }}
                {{ product.brand.image.url }}
                {% if product.brand.image.alt %}
                        {{ product.brand.image.alt }}
                {% endif %}
                {% if product.brand.image.text %}
                        {{ product.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if product.brand.seo %}
                {% if product.brand.seo.description %}
                        {{ product.brand.seo.description }}
                {% endif %}
                {% if product.brand.seo.keywords %}
                        {{ product.brand.seo.keywords }}
                {% endif %}
                {% if product.brand.seo.title %}
                        {{ product.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.brand.contentGrid %}
                {{ product.brand.contentGrid }}
        {% endif %}
{% endif %}

{% if product.imageForEnumValueId %}
        {{ product.imageForEnumValueId.originalHeight }}
        {{ product.imageForEnumValueId.originalWidth }}
        {{ product.imageForEnumValueId.url }}
        {% if product.imageForEnumValueId.alt %}
                {{ product.imageForEnumValueId.alt }}
        {% endif %}
        {% if product.imageForEnumValueId.text %}
                {{ product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}

{% if product.image %}
        {{ product.image.originalHeight }}
        {{ product.image.originalWidth }}
        {{ product.image.url }}
        {% if product.image.alt %}
                {{ product.image.alt }}
        {% endif %}
        {% if product.image.text %}
                {{ product.image.text }}
        {% endif %}
{% endif %}

{% if product.successor %}
        {{ product.successor.id }}
        {{ product.successor.name }}
        {{ product.successor.trackingId }}
        {{ product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if product.successor.active %} ... {% endif %}
        {% if product.successor.compared %} ... {% endif %}
        {% if product.successor.differentVariantPrices %} ... {% endif %}
        {% if product.successor.flagNew %} ... {% endif %}
        {% if product.successor.flagPromo %} ... {% endif %}
        {% if product.successor.flagSecondHand %} ... {% endif %}
        {% if product.successor.flagSellout %} ... {% endif %}
        {% if product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.successor.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                        {{ attributeInstance.group.id }}
                {% endif %}
                {% if attributeInstance.image %}
                        {{ attributeInstance.image.originalHeight }}
                        {{ attributeInstance.image.originalWidth }}
                        {{ attributeInstance.image.url }}
                        {% if attributeInstance.image.alt %}
                                {{ attributeInstance.image.alt }}
                        {% endif %}
                        {% if attributeInstance.image.text %}
                                {{ attributeInstance.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.successor.category.id }}
        {{ product.successor.category.productCount }}
        {{ product.successor.category.productInStockCount }}
        {{ product.successor.category.totalStockQuantity }}
        {{ product.successor.category.headline }}
        {{ product.successor.category.menuName }}
        {{ product.successor.category.name }}
        {% if product.successor.category.flagErotic %} ... {% endif %}
        {% if product.successor.category.flagImportant %} ... {% endif %}
        {% if product.successor.category.noFollow %} ... {% endif %}
        {% for category in product.successor.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ product.successor.category.url }}
        {{ product.successor.category.url.absolute }}
        {{ product.successor.category.url.path }}
        {{ product.successor.category.variantType.id }}
        {{ product.successor.category.variantType.name }}
        {% for video in product.successor.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.successor.category.pathIds }}
        {{ product.successor.category.pathNames }}
        {{ product.successor.category.templateAttribute }}
        {% if product.successor.category.subHeadline %}
                {{ product.successor.category.subHeadline }}
        {% endif %}
        {% if product.successor.category.text %}
                {{ product.successor.category.text }}
        {% endif %}
        {% if product.successor.category.parent %}
                {{ product.successor.category.parent.id }}
                {{ product.successor.category.parent.productCount }}
                {{ product.successor.category.parent.productInStockCount }}
                {{ product.successor.category.parent.totalStockQuantity }}
                {{ product.successor.category.parent.headline }}
                {{ product.successor.category.parent.menuName }}
                {{ product.successor.category.parent.name }}
                {% if product.successor.category.parent.flagErotic %} ... {% endif %}
                {% if product.successor.category.parent.flagImportant %} ... {% endif %}
                {% if product.successor.category.parent.noFollow %} ... {% endif %}
                {% for category in product.successor.category.parent.subcategories %}
                {% endfor %}
                {% for video in product.successor.category.parent.videos %}
                {% endfor %}
                {{ product.successor.category.parent.pathIds }}
                {{ product.successor.category.parent.pathNames }}
                {{ product.successor.category.parent.templateAttribute }}
                {% if product.successor.category.parent.subHeadline %}
                        {{ product.successor.category.parent.subHeadline }}
                {% endif %}
                {% if product.successor.category.parent.text %}
                        {{ product.successor.category.parent.text }}
                {% endif %}
                {% if product.successor.category.parent.image %}
                {% endif %}
                {% if product.successor.category.parent.contentGrid %}
                        {{ product.successor.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.successor.category.image %}
                {{ product.successor.category.image.originalHeight }}
                {{ product.successor.category.image.originalWidth }}
                {{ product.successor.category.image.url }}
                {% if product.successor.category.image.alt %}
                        {{ product.successor.category.image.alt }}
                {% endif %}
                {% if product.successor.category.image.text %}
                        {{ product.successor.category.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor.category.contentGrid %}
                {{ product.successor.category.contentGrid }}
        {% endif %}
        {% for category in product.successor.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.successor.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ category.url }}
                {{ category.url.absolute }}
                {{ category.url.path }}
                {{ category.variantType.id }}
                {{ category.variantType.name }}
                {% for video in category.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                        {{ category.parent.id }}
                        {{ category.parent.productCount }}
                        {{ category.parent.productInStockCount }}
                        {{ category.parent.totalStockQuantity }}
                        {{ category.parent.headline }}
                        {{ category.parent.menuName }}
                        {{ category.parent.name }}
                        {% if category.parent.flagErotic %} ... {% endif %}
                        {% if category.parent.flagImportant %} ... {% endif %}
                        {% if category.parent.noFollow %} ... {% endif %}
                        {% for category in category.parent.subcategories %}
                        {% endfor %}
                        {% for video in category.parent.videos %}
                        {% endfor %}
                        {{ category.parent.pathIds }}
                        {{ category.parent.pathNames }}
                        {{ category.parent.templateAttribute }}
                        {% if category.parent.subHeadline %}
                                {{ category.parent.subHeadline }}
                        {% endif %}
                        {% if category.parent.text %}
                                {{ category.parent.text }}
                        {% endif %}
                        {% if category.parent.image %}
                        {% endif %}
                        {% if category.parent.contentGrid %}
                                {{ category.parent.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if category.image %}
                        {{ category.image.originalHeight }}
                        {{ category.image.originalWidth }}
                        {{ category.image.url }}
                        {% if category.image.alt %}
                                {{ category.image.alt }}
                        {% endif %}
                        {% if category.image.text %}
                                {{ category.image.text }}
                        {% endif %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.successor.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.usage.archive %} ... {% endif %}
                {% if file.usage.graphic %} ... {% endif %}
                {% if file.usage.manual %} ... {% endif %}
                {% if file.usage.other %} ... {% endif %}
                {% if file.usage.sound %} ... {% endif %}
                {% if file.usage.specification %} ... {% endif %}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.successor.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.successor.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.successor.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.successor.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.successor.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.successor.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.successor.item.id }}
        {{ product.successor.item.name }}
        {{ product.successor.item.trackingId }}
        {% if product.successor.item.digital %} ... {% endif %}
        {% if product.successor.item.sellable %} ... {% endif %}
        {% if product.successor.item.service %} ... {% endif %}
        {{ product.successor.item.availability.availableAmount }}
        {{ product.successor.item.availability.availableAmountInShowroom }}
        {{ product.successor.item.availability.availableAmountInStockroom }}
        {{ product.successor.item.availability.availableAmountInStorageCenter }}
        {{ product.successor.item.availability.hours }}
        {{ product.successor.item.availability.totalAmount }}
        {% if product.successor.item.availability.inShowroom %} ... {% endif %}
        {% if product.successor.item.availability.inStock %} ... {% endif %}
        {% if product.successor.item.availability.preorder %} ... {% endif %}
        {% if product.successor.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in product.successor.item.availability.deliveryOptions %}
        {% endfor %}
        {% if product.successor.item.availability.text %}
                {{ product.successor.item.availability.text }}
        {% endif %}
        {% if product.successor.item.availability.dateExpected %}
                {{ product.successor.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.successor.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in product.successor.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.successor.item.product.id }}
        {{ product.successor.item.product.name }}
        {{ product.successor.item.product.trackingId }}
        {{ product.successor.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if product.successor.item.product.active %} ... {% endif %}
        {% if product.successor.item.product.compared %} ... {% endif %}
        {% if product.successor.item.product.differentVariantPrices %} ... {% endif %}
        {% if product.successor.item.product.flagNew %} ... {% endif %}
        {% if product.successor.item.product.flagPromo %} ... {% endif %}
        {% if product.successor.item.product.flagSecondHand %} ... {% endif %}
        {% if product.successor.item.product.flagSellout %} ... {% endif %}
        {% if product.successor.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if product.successor.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.successor.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.successor.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.successor.item.product.categories %}
        {% endfor %}
        {% for category in product.successor.item.product.otherCategories %}
        {% endfor %}
        {% for file in product.successor.item.product.files %}
        {% endfor %}
        {% for image in product.successor.item.product.images %}
        {% endfor %}
        {% for image in product.successor.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.successor.item.product.images360 %}
        {% endfor %}
        {% for image in product.successor.item.product.currentImages %}
        {% endfor %}
        {% for image in product.successor.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.successor.item.product.otherImages %}
        {% endfor %}
        {% for label in product.successor.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in product.successor.item.product.enumValues %}
        {% endfor %}
        {% for product in product.successor.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in product.successor.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.successor.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.successor.item.product.currentVariants %}
        {% endfor %}
        {% for variant in product.successor.item.product.variants %}
        {% endfor %}
        {% for variant in product.successor.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.successor.item.product.videos %}
        {% endfor %}
        {{ product.successor.item.product.trackingIds }}
        {% if product.successor.item.product.currentSubName %}
                {{ product.successor.item.product.currentSubName }}
        {% endif %}
        {% if product.successor.item.product.nameSuffix %}
                {{ product.successor.item.product.nameSuffix }}
        {% endif %}
        {% if product.successor.item.product.nameSupplier %}
                {{ product.successor.item.product.nameSupplier }}
        {% endif %}
        {% if product.successor.item.product.text %}
                {{ product.successor.item.product.text }}
        {% endif %}
        {% if product.successor.item.product.attribute %}
        {% endif %}
        {% if product.successor.item.product.brand %}
        {% endif %}
        {% if product.successor.item.product.imageForEnumValueId %}
        {% endif %}
        {% if product.successor.item.product.image %}
        {% endif %}
        {% if product.successor.item.product.seo %}
        {% endif %}
        {% if product.successor.item.product.supplier %}
        {% endif %}
        {% if product.successor.item.product.unit %}
        {% endif %}
        {% if product.successor.item.product.variant %}
        {% endif %}
        {% if product.successor.item.product.warranty %}
        {% endif %}
        {% if product.successor.item.product.contentGrid %}
                {{ product.successor.item.product.contentGrid }}
        {% endif %}
        {% for upsell in product.successor.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.successor.item.trackingIds }}
        {{ product.successor.item.storageLocations }}
        {% if product.successor.item.packageHeight %}
                {{ product.successor.item.packageHeight }}
        {% endif %}
        {% if product.successor.item.packageLength %}
                {{ product.successor.item.packageLength }}
        {% endif %}
        {% if product.successor.item.packageWeight %}
                {{ product.successor.item.packageWeight }}
        {% endif %}
        {% if product.successor.item.packageWidth %}
                {{ product.successor.item.packageWidth }}
        {% endif %}
        {% if product.successor.item.code %}
                {{ product.successor.item.code }}
        {% endif %}
        {% if product.successor.item.bundle %}
                {% if product.successor.item.bundle.multiPack %} ... {% endif %}
                {% if product.successor.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if product.successor.item.cheapestDelivery %}
                {{ product.successor.item.cheapestDelivery.inputId }}
                {{ product.successor.item.cheapestDelivery.name }}
                {{ product.successor.item.cheapestDelivery.vatRate }}
                {% if product.successor.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.currier %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.free %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.selected %} ... {% endif %}
                {% if product.successor.item.cheapestDelivery.text %}
                        {{ product.successor.item.cheapestDelivery.text }}
                {% endif %}
                {% if product.successor.item.cheapestDelivery.branch %}
                {% endif %}
                {% if product.successor.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if product.successor.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if product.successor.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if product.successor.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if product.successor.item.freeDelivery %}
                {{ product.successor.item.freeDelivery.name }}
                {{ product.successor.item.freeDelivery.vatRate }}
                {% if product.successor.item.freeDelivery.id %}
                        {{ product.successor.item.freeDelivery.id }}
                {% endif %}
                {% if product.successor.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if product.successor.item.closestFreeDelivery %}
                {{ product.successor.item.closestFreeDelivery.name }}
                {{ product.successor.item.closestFreeDelivery.vatRate }}
                {% if product.successor.item.closestFreeDelivery.id %}
                        {{ product.successor.item.closestFreeDelivery.id }}
                {% endif %}
                {% if product.successor.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if product.successor.item.packageDimensions %}
                {{ product.successor.item.packageDimensions }}
                {{ product.successor.item.packageDimensions.height }}
                {{ product.successor.item.packageDimensions.length }}
                {{ product.successor.item.packageDimensions.width }}
                {{ product.successor.item.packageDimensions.unit }}
        {% endif %}
        {% if product.successor.item.image %}
                {{ product.successor.item.image.originalHeight }}
                {{ product.successor.item.image.originalWidth }}
                {{ product.successor.item.image.url }}
                {% if product.successor.item.image.alt %}
                        {{ product.successor.item.image.alt }}
                {% endif %}
                {% if product.successor.item.image.text %}
                        {{ product.successor.item.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor.item.price %}
                {{ product.successor.item.price.vatRate }}
                {% if product.successor.item.price.discountPercent %}
                        {{ product.successor.item.price.discountPercent }}
                {% endif %}
                {% if product.successor.item.price.discountValidTo %}
                        {{ product.successor.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if product.successor.item.price.beforeDiscount %}
                {% endif %}
                {% if product.successor.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if product.successor.item.url %}
                {{ product.successor.item.url }}
                {{ product.successor.item.url.absolute }}
                {{ product.successor.item.url.path }}
        {% endif %}
        {% if product.successor.item.variant %}
                {{ product.successor.item.variant.id }}
                {{ product.successor.item.variant.name }}
                {{ product.successor.item.variant.trackingId }}
                {% if product.successor.item.variant.active %} ... {% endif %}
                {% if product.successor.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.successor.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in product.successor.item.variant.enumValues %}
                {% endfor %}
                {% for image in product.successor.item.variant.images %}
                {% endfor %}
                {% for upsell in product.successor.item.variant.availableUpsells %}
                {% endfor %}
                {% if product.successor.item.variant.legacyRel %}
                        {{ product.successor.item.variant.legacyRel }}
                {% endif %}
                {% if product.successor.item.variant.image %}
                {% endif %}
        {% endif %}
        {% for label in product.successor.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                        {{ label.image.originalHeight }}
                        {{ label.image.originalWidth }}
                        {{ label.image.url }}
                        {% if label.image.alt %}
                                {{ label.image.alt }}
                        {% endif %}
                        {% if label.image.text %}
                                {{ label.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.successor.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {{ productEnumValue.enum.id }}
                {{ productEnumValue.enum.name }}
                {% for enumValue in productEnumValue.enum.values %}
                {% endfor %}
                {% if productEnumValue.enum.text %}
                        {{ productEnumValue.enum.text }}
                {% endif %}
                {% if productEnumValue.enum.meaning %}
                {% endif %}
                {{ productEnumValue.url }}
                {{ productEnumValue.url.absolute }}
                {{ productEnumValue.url.path }}
                {% for variant in productEnumValue.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                        {{ productEnumValue.image.originalHeight }}
                        {{ productEnumValue.image.originalWidth }}
                        {{ productEnumValue.image.url }}
                        {% if productEnumValue.image.alt %}
                                {{ productEnumValue.image.alt }}
                        {% endif %}
                        {% if productEnumValue.image.text %}
                                {{ productEnumValue.image.text }}
                        {% endif %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                        {{ productEnumValue.variantImage.originalHeight }}
                        {{ productEnumValue.variantImage.originalWidth }}
                        {{ productEnumValue.variantImage.url }}
                        {% if productEnumValue.variantImage.alt %}
                                {{ productEnumValue.variantImage.alt }}
                        {% endif %}
                        {% if productEnumValue.variantImage.text %}
                                {{ productEnumValue.variantImage.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for product in product.successor.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                        {{ attributeInstance.name }}
                        {{ attributeInstance.valuesHtml }}
                        {% for attributeValueInstance in attributeInstance.values %}
                        {% endfor %}
                        {% if attributeInstance.description %}
                                {{ attributeInstance.description }}
                        {% endif %}
                        {% if attributeInstance.group %}
                        {% endif %}
                        {% if attributeInstance.image %}
                        {% endif %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {{ product.category.id }}
                {{ product.category.productCount }}
                {{ product.category.productInStockCount }}
                {{ product.category.totalStockQuantity }}
                {{ product.category.headline }}
                {{ product.category.menuName }}
                {{ product.category.name }}
                {% if product.category.flagErotic %} ... {% endif %}
                {% if product.category.flagImportant %} ... {% endif %}
                {% if product.category.noFollow %} ... {% endif %}
                {% for category in product.category.subcategories %}
                {% endfor %}
                {% for video in product.category.videos %}
                {% endfor %}
                {{ product.category.pathIds }}
                {{ product.category.pathNames }}
                {{ product.category.templateAttribute }}
                {% if product.category.subHeadline %}
                        {{ product.category.subHeadline }}
                {% endif %}
                {% if product.category.text %}
                        {{ product.category.text }}
                {% endif %}
                {% if product.category.parent %}
                {% endif %}
                {% if product.category.image %}
                {% endif %}
                {% if product.category.contentGrid %}
                        {{ product.category.contentGrid }}
                {% endif %}
                {% for category in product.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for category in product.otherCategories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {% for file in product.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in product.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.images360 %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.currentImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {% for image in product.otherImages %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ product.item.id }}
                {{ product.item.name }}
                {{ product.item.trackingId }}
                {% if product.item.digital %} ... {% endif %}
                {% if product.item.sellable %} ... {% endif %}
                {% if product.item.service %} ... {% endif %}
                {% for availableUpsellGroup in product.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in product.item.availableUpsells %}
                {% endfor %}
                {{ product.item.trackingIds }}
                {{ product.item.storageLocations }}
                {% if product.item.packageHeight %}
                        {{ product.item.packageHeight }}
                {% endif %}
                {% if product.item.packageLength %}
                        {{ product.item.packageLength }}
                {% endif %}
                {% if product.item.packageWeight %}
                        {{ product.item.packageWeight }}
                {% endif %}
                {% if product.item.packageWidth %}
                        {{ product.item.packageWidth }}
                {% endif %}
                {% if product.item.code %}
                        {{ product.item.code }}
                {% endif %}
                {% if product.item.bundle %}
                {% endif %}
                {% if product.item.cheapestDelivery %}
                {% endif %}
                {% if product.item.freeDelivery %}
                {% endif %}
                {% if product.item.closestFreeDelivery %}
                {% endif %}
                {% if product.item.packageDimensions %}
                {% endif %}
                {% if product.item.image %}
                {% endif %}
                {% if product.item.price %}
                {% endif %}
                {% if product.item.url %}
                {% endif %}
                {% if product.item.variant %}
                {% endif %}
                {% for label in product.labels %}
                        {{ label.id }}
                        {{ label.name }}
                        {% if label.code %}
                                {{ label.code }}
                        {% endif %}
                        {% if label.colorCode %}
                                {{ label.colorCode }}
                        {% endif %}
                        {% if label.image %}
                        {% endif %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                        {{ productEnumValue.id }}
                        {{ productEnumValue.name }}
                        {% if productEnumValue.selected %} ... {% endif %}
                        {% for variant in productEnumValue.variants %}
                        {% endfor %}
                        {% if productEnumValue.text %}
                                {{ productEnumValue.text }}
                        {% endif %}
                        {% if productEnumValue.image %}
                        {% endif %}
                        {% if productEnumValue.variantImage %}
                        {% endif %}
                {% endfor %}
                {{ product.rating.count }}
                {% if product.rating.voted %} ... {% endif %}
                {% if product.rating.average %}
                        {{ product.rating.average }}
                {% endif %}
                {% for upsell in product.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ product.url }}
                {{ product.url.absolute }}
                {{ product.url.path }}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                        {{ variantChoiceStep.headline }}
                        {{ variantChoiceStep.inputName }}
                        {{ variantChoiceStep.mode }}
                        {% if variantChoiceStep.final %} ... {% endif %}
                        {% for variantChoice in variantChoiceStep.choices %}
                        {% endfor %}
                        {% if variantChoiceStep.description %}
                                {{ variantChoiceStep.description }}
                        {% endif %}
                        {% if variantChoiceStep.infoDescription %}
                                {{ variantChoiceStep.infoDescription }}
                        {% endif %}
                        {% if variantChoiceStep.messageEmpty %}
                                {{ variantChoiceStep.messageEmpty }}
                        {% endif %}
                        {% if variantChoiceStep.placeholder %}
                                {{ variantChoiceStep.placeholder }}
                        {% endif %}
                        {% if variantChoiceStep.icon %}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon %}
                        {% endif %}
                        {% if variantChoiceStep.info %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.variants %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                        {{ variant.id }}
                        {{ variant.name }}
                        {{ variant.trackingId }}
                        {% if variant.active %} ... {% endif %}
                        {% if variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in variant.enumValues %}
                        {% endfor %}
                        {% for image in variant.images %}
                        {% endfor %}
                        {% for upsell in variant.availableUpsells %}
                        {% endfor %}
                        {% if variant.legacyRel %}
                                {{ variant.legacyRel }}
                        {% endif %}
                        {% if variant.image %}
                        {% endif %}
                {% endfor %}
                {{ product.variantType.id }}
                {{ product.variantType.name }}
                {% for video in product.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                        {{ product.attribute.name }}
                        {{ product.attribute.valuesHtml }}
                        {% for attributeValueInstance in product.attribute.values %}
                        {% endfor %}
                        {% if product.attribute.description %}
                                {{ product.attribute.description }}
                        {% endif %}
                        {% if product.attribute.group %}
                        {% endif %}
                        {% if product.attribute.image %}
                        {% endif %}
                {% endif %}
                {% if product.brand %}
                        {{ product.brand.id }}
                        {{ product.brand.name }}
                        {% if product.brand.flagImportant %} ... {% endif %}
                        {% for category in product.brand.categories %}
                        {% endfor %}
                        {% if product.brand.code %}
                                {{ product.brand.code }}
                        {% endif %}
                        {% if product.brand.web %}
                                {{ product.brand.web }}
                        {% endif %}
                        {% if product.brand.text %}
                                {{ product.brand.text }}
                        {% endif %}
                        {% if product.brand.image %}
                        {% endif %}
                        {% if product.brand.seo %}
                        {% endif %}
                        {% if product.brand.contentGrid %}
                                {{ product.brand.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                        {{ product.imageForEnumValueId.originalHeight }}
                        {{ product.imageForEnumValueId.originalWidth }}
                        {{ product.imageForEnumValueId.url }}
                        {% if product.imageForEnumValueId.alt %}
                                {{ product.imageForEnumValueId.alt }}
                        {% endif %}
                        {% if product.imageForEnumValueId.text %}
                                {{ product.imageForEnumValueId.text }}
                        {% endif %}
                {% endif %}
                {% if product.image %}
                        {{ product.image.originalHeight }}
                        {{ product.image.originalWidth }}
                        {{ product.image.url }}
                        {% if product.image.alt %}
                                {{ product.image.alt }}
                        {% endif %}
                        {% if product.image.text %}
                                {{ product.image.text }}
                        {% endif %}
                {% endif %}
                {% if product.seo %}
                        {% if product.seo.description %}
                                {{ product.seo.description }}
                        {% endif %}
                        {% if product.seo.keywords %}
                                {{ product.seo.keywords }}
                        {% endif %}
                        {% if product.seo.title %}
                                {{ product.seo.title }}
                        {% endif %}
                {% endif %}
                {% if product.supplier %}
                        {{ product.supplier.id }}
                        {{ product.supplier.name }}
                {% endif %}
                {% if product.unit %}
                        {{ product.unit.name }}
                {% endif %}
                {% if product.variant %}
                        {{ product.variant.id }}
                        {{ product.variant.name }}
                        {{ product.variant.trackingId }}
                        {% if product.variant.active %} ... {% endif %}
                        {% if product.variant.selected %} ... {% endif %}
                        {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                        {% endfor %}
                        {% for enumValue in product.variant.enumValues %}
                        {% endfor %}
                        {% for image in product.variant.images %}
                        {% endfor %}
                        {% for upsell in product.variant.availableUpsells %}
                        {% endfor %}
                        {% if product.variant.legacyRel %}
                                {{ product.variant.legacyRel }}
                        {% endif %}
                        {% if product.variant.image %}
                        {% endif %}
                {% endif %}
                {% if product.warranty %}
                        {{ product.warranty.months }}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ product.successor.rating.count }}
        {% if product.successor.rating.voted %} ... {% endif %}
        {% if product.successor.rating.average %}
                {{ product.successor.rating.average }}
        {% endif %}
        {% for upsell in product.successor.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ product.successor.url }}
        {{ product.successor.url.absolute }}
        {{ product.successor.url.path }}
        {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                        {{ variantChoice.inputValue }}
                        {{ variantChoice.name }}
                        {% if variantChoice.selected %} ... {% endif %}
                        {% if variantChoice.color %}
                                {{ variantChoice.color }}
                        {% endif %}
                        {% if variantChoice.description %}
                                {{ variantChoice.description }}
                        {% endif %}
                        {% if variantChoice.availability %}
                        {% endif %}
                        {% if variantChoice.bundle %}
                        {% endif %}
                        {% if variantChoice.icon %}
                        {% endif %}
                        {% if variantChoice.image %}
                        {% endif %}
                        {% if variantChoice.price %}
                        {% endif %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                        {{ variantChoiceStep.icon.originalHeight }}
                        {{ variantChoiceStep.icon.originalWidth }}
                        {{ variantChoiceStep.icon.url }}
                        {% if variantChoiceStep.icon.alt %}
                                {{ variantChoiceStep.icon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.icon.text %}
                                {{ variantChoiceStep.icon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                        {{ variantChoiceStep.infoIcon.originalHeight }}
                        {{ variantChoiceStep.infoIcon.originalWidth }}
                        {{ variantChoiceStep.infoIcon.url }}
                        {% if variantChoiceStep.infoIcon.alt %}
                                {{ variantChoiceStep.infoIcon.alt }}
                        {% endif %}
                        {% if variantChoiceStep.infoIcon.text %}
                                {{ variantChoiceStep.infoIcon.text }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.info %}
                        {{ variantChoiceStep.info.id }}
                        {{ variantChoiceStep.info.name }}
                        {% for file in variantChoiceStep.info.files %}
                        {% endfor %}
                        {% for image in variantChoiceStep.info.images %}
                        {% endfor %}
                        {% for textPage in variantChoiceStep.info.subPages %}
                        {% endfor %}
                        {% for video in variantChoiceStep.info.videos %}
                        {% endfor %}
                        {% if variantChoiceStep.info.code %}
                                {{ variantChoiceStep.info.code }}
                        {% endif %}
                        {% if variantChoiceStep.info.text %}
                                {{ variantChoiceStep.info.text }}
                        {% endif %}
                        {% if variantChoiceStep.info.image %}
                        {% endif %}
                        {% if variantChoiceStep.info.contentGrid %}
                                {{ variantChoiceStep.info.contentGrid }}
                        {% endif %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                        {{ variantChoiceStep.selectedChoice.inputValue }}
                        {{ variantChoiceStep.selectedChoice.name }}
                        {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                        {% if variantChoiceStep.selectedChoice.color %}
                                {{ variantChoiceStep.selectedChoice.color }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.description %}
                                {{ variantChoiceStep.selectedChoice.description }}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.availability %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.bundle %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.icon %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.image %}
                        {% endif %}
                        {% if variantChoiceStep.selectedChoice.price %}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in product.successor.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.enumValues %}
                {% endfor %}
                {% for product in variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.variants %}
                {% endfor %}
                {% for variant in variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in product.successor.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.enumValues %}
                {% endfor %}
                {% for product in variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for variant in product.successor.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ variant.item.id }}
                {{ variant.item.name }}
                {{ variant.item.trackingId }}
                {% if variant.item.digital %} ... {% endif %}
                {% if variant.item.sellable %} ... {% endif %}
                {% if variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in variant.item.availableUpsells %}
                {% endfor %}
                {{ variant.item.trackingIds }}
                {{ variant.item.storageLocations }}
                {% if variant.item.packageHeight %}
                        {{ variant.item.packageHeight }}
                {% endif %}
                {% if variant.item.packageLength %}
                        {{ variant.item.packageLength }}
                {% endif %}
                {% if variant.item.packageWeight %}
                        {{ variant.item.packageWeight }}
                {% endif %}
                {% if variant.item.packageWidth %}
                        {{ variant.item.packageWidth }}
                {% endif %}
                {% if variant.item.code %}
                        {{ variant.item.code }}
                {% endif %}
                {% if variant.item.bundle %}
                {% endif %}
                {% if variant.item.cheapestDelivery %}
                {% endif %}
                {% if variant.item.freeDelivery %}
                {% endif %}
                {% if variant.item.closestFreeDelivery %}
                {% endif %}
                {% if variant.item.packageDimensions %}
                {% endif %}
                {% if variant.item.image %}
                {% endif %}
                {% if variant.item.price %}
                {% endif %}
                {% if variant.item.url %}
                {% endif %}
                {% if variant.item.variant %}
                {% endif %}
                {{ variant.product.id }}
                {{ variant.product.name }}
                {{ variant.product.trackingId }}
                {{ variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.active %} ... {% endif %}
                {% if variant.product.compared %} ... {% endif %}
                {% if variant.product.differentVariantPrices %} ... {% endif %}
                {% if variant.product.flagNew %} ... {% endif %}
                {% if variant.product.flagPromo %} ... {% endif %}
                {% if variant.product.flagSecondHand %} ... {% endif %}
                {% if variant.product.flagSellout %} ... {% endif %}
                {% if variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.categories %}
                {% endfor %}
                {% for category in variant.product.otherCategories %}
                {% endfor %}
                {% for file in variant.product.files %}
                {% endfor %}
                {% for image in variant.product.images %}
                {% endfor %}
                {% for image in variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.images360 %}
                {% endfor %}
                {% for image in variant.product.currentImages %}
                {% endfor %}
                {% for image in variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.otherImages %}
                {% endfor %}
                {% for label in variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.enumValues %}
                {% endfor %}
                {% for product in variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.variants %}
                {% endfor %}
                {% for video in variant.product.videos %}
                {% endfor %}
                {{ variant.product.trackingIds }}
                {% if variant.product.currentSubName %}
                        {{ variant.product.currentSubName }}
                {% endif %}
                {% if variant.product.nameSuffix %}
                        {{ variant.product.nameSuffix }}
                {% endif %}
                {% if variant.product.nameSupplier %}
                        {{ variant.product.nameSupplier }}
                {% endif %}
                {% if variant.product.text %}
                        {{ variant.product.text }}
                {% endif %}
                {% if variant.product.attribute %}
                {% endif %}
                {% if variant.product.brand %}
                {% endif %}
                {% if variant.product.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.image %}
                {% endif %}
                {% if variant.product.seo %}
                {% endif %}
                {% if variant.product.supplier %}
                {% endif %}
                {% if variant.product.unit %}
                {% endif %}
                {% if variant.product.variant %}
                {% endif %}
                {% if variant.product.warranty %}
                {% endif %}
                {% if variant.product.contentGrid %}
                        {{ variant.product.contentGrid }}
                {% endif %}
                {% for upsell in variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ variant.url }}
                {{ variant.url.absolute }}
                {{ variant.url.path }}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                        {{ variant.image.originalHeight }}
                        {{ variant.image.originalWidth }}
                        {{ variant.image.url }}
                        {% if variant.image.alt %}
                                {{ variant.image.alt }}
                        {% endif %}
                        {% if variant.image.text %}
                                {{ variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ product.successor.variantType.id }}
        {{ product.successor.variantType.name }}
        {% for video in product.successor.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ product.successor.trackingIds }}
        {% if product.successor.currentSubName %}
                {{ product.successor.currentSubName }}
        {% endif %}
        {% if product.successor.nameSuffix %}
                {{ product.successor.nameSuffix }}
        {% endif %}
        {% if product.successor.nameSupplier %}
                {{ product.successor.nameSupplier }}
        {% endif %}
        {% if product.successor.text %}
                {{ product.successor.text }}
        {% endif %}
        {% if product.successor.attribute %}
                {{ product.successor.attribute.name }}
                {{ product.successor.attribute.valuesHtml }}
                {% for attributeValueInstance in product.successor.attribute.values %}
                        {{ attributeValueInstance.values }}
                        {{ attributeValueInstance.nameHtml }}
                        {% if attributeValueInstance.colorCode %}
                                {{ attributeValueInstance.colorCode }}
                        {% endif %}
                        {% if attributeValueInstance.text %}
                                {{ attributeValueInstance.text }}
                        {% endif %}
                        {% if attributeValueInstance.unit %}
                                {{ attributeValueInstance.unit }}
                        {% endif %}
                        {% if attributeValueInstance.image %}
                        {% endif %}
                        {% if attributeValueInstance.name %}
                                {{ attributeValueInstance.name }}
                        {% endif %}
                {% endfor %}
                {% if product.successor.attribute.description %}
                        {{ product.successor.attribute.description }}
                {% endif %}
                {% if product.successor.attribute.group %}
                        {{ product.successor.attribute.group.id }}
                {% endif %}
                {% if product.successor.attribute.image %}
                        {{ product.successor.attribute.image.originalHeight }}
                        {{ product.successor.attribute.image.originalWidth }}
                        {{ product.successor.attribute.image.url }}
                        {% if product.successor.attribute.image.alt %}
                                {{ product.successor.attribute.image.alt }}
                        {% endif %}
                        {% if product.successor.attribute.image.text %}
                                {{ product.successor.attribute.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if product.successor.brand %}
                {{ product.successor.brand.id }}
                {{ product.successor.brand.name }}
                {% if product.successor.brand.flagImportant %} ... {% endif %}
                {% for category in product.successor.brand.categories %}
                        {{ category.id }}
                        {{ category.productCount }}
                        {{ category.productInStockCount }}
                        {{ category.totalStockQuantity }}
                        {{ category.headline }}
                        {{ category.menuName }}
                        {{ category.name }}
                        {% if category.flagErotic %} ... {% endif %}
                        {% if category.flagImportant %} ... {% endif %}
                        {% if category.noFollow %} ... {% endif %}
                        {% for category in category.subcategories %}
                        {% endfor %}
                        {% for video in category.videos %}
                        {% endfor %}
                        {{ category.pathIds }}
                        {{ category.pathNames }}
                        {{ category.templateAttribute }}
                        {% if category.subHeadline %}
                                {{ category.subHeadline }}
                        {% endif %}
                        {% if category.text %}
                                {{ category.text }}
                        {% endif %}
                        {% if category.parent %}
                        {% endif %}
                        {% if category.image %}
                        {% endif %}
                        {% if category.contentGrid %}
                                {{ category.contentGrid }}
                        {% endif %}
                {% endfor %}
                {{ product.successor.brand.url }}
                {{ product.successor.brand.url.absolute }}
                {{ product.successor.brand.url.path }}
                {{ product.successor.brand.categoryUrl }}
                {{ product.successor.brand.categoryUrl.absolute }}
                {{ product.successor.brand.categoryUrl.path }}
                {% if product.successor.brand.code %}
                        {{ product.successor.brand.code }}
                {% endif %}
                {% if product.successor.brand.web %}
                        {{ product.successor.brand.web }}
                {% endif %}
                {% if product.successor.brand.text %}
                        {{ product.successor.brand.text }}
                {% endif %}
                {% if product.successor.brand.image %}
                        {{ product.successor.brand.image.originalHeight }}
                        {{ product.successor.brand.image.originalWidth }}
                        {{ product.successor.brand.image.url }}
                        {% if product.successor.brand.image.alt %}
                                {{ product.successor.brand.image.alt }}
                        {% endif %}
                        {% if product.successor.brand.image.text %}
                                {{ product.successor.brand.image.text }}
                        {% endif %}
                {% endif %}
                {% if product.successor.brand.seo %}
                        {% if product.successor.brand.seo.description %}
                                {{ product.successor.brand.seo.description }}
                        {% endif %}
                        {% if product.successor.brand.seo.keywords %}
                                {{ product.successor.brand.seo.keywords }}
                        {% endif %}
                        {% if product.successor.brand.seo.title %}
                                {{ product.successor.brand.seo.title }}
                        {% endif %}
                {% endif %}
                {% if product.successor.brand.contentGrid %}
                        {{ product.successor.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.successor.imageForEnumValueId %}
                {{ product.successor.imageForEnumValueId.originalHeight }}
                {{ product.successor.imageForEnumValueId.originalWidth }}
                {{ product.successor.imageForEnumValueId.url }}
                {% if product.successor.imageForEnumValueId.alt %}
                        {{ product.successor.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.successor.imageForEnumValueId.text %}
                        {{ product.successor.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.successor.image %}
                {{ product.successor.image.originalHeight }}
                {{ product.successor.image.originalWidth }}
                {{ product.successor.image.url }}
                {% if product.successor.image.alt %}
                        {{ product.successor.image.alt }}
                {% endif %}
                {% if product.successor.image.text %}
                        {{ product.successor.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor.seo %}
                {% if product.successor.seo.description %}
                        {{ product.successor.seo.description }}
                {% endif %}
                {% if product.successor.seo.keywords %}
                        {{ product.successor.seo.keywords }}
                {% endif %}
                {% if product.successor.seo.title %}
                        {{ product.successor.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.successor.supplier %}
                {{ product.successor.supplier.id }}
                {{ product.successor.supplier.name }}
        {% endif %}
        {% if product.successor.unit %}
                {{ product.successor.unit.name }}
        {% endif %}
        {% if product.successor.variant %}
                {{ product.successor.variant.id }}
                {{ product.successor.variant.name }}
                {{ product.successor.variant.trackingId }}
                {% if product.successor.variant.active %} ... {% endif %}
                {% if product.successor.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.successor.variant.availableUpsellGroups %}
                        {{ availableUpsellGroup.id }}
                        {{ availableUpsellGroup.name }}
                        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                        {% for upsell in availableUpsellGroup.upsells %}
                        {% endfor %}
                        {% if availableUpsellGroup.code %}
                                {{ availableUpsellGroup.code }}
                        {% endif %}
                {% endfor %}
                {% for enumValue in product.successor.variant.enumValues %}
                        {{ enumValue.id }}
                        {{ enumValue.name }}
                        {% if enumValue.text %}
                                {{ enumValue.text }}
                        {% endif %}
                        {% if enumValue.image %}
                        {% endif %}
                {% endfor %}
                {% for image in product.successor.variant.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ product.successor.variant.item.id }}
                {{ product.successor.variant.item.name }}
                {{ product.successor.variant.item.trackingId }}
                {% if product.successor.variant.item.digital %} ... {% endif %}
                {% if product.successor.variant.item.sellable %} ... {% endif %}
                {% if product.successor.variant.item.service %} ... {% endif %}
                {% for availableUpsellGroup in product.successor.variant.item.availableUpsellGroups %}
                {% endfor %}
                {% for upsell in product.successor.variant.item.availableUpsells %}
                {% endfor %}
                {{ product.successor.variant.item.trackingIds }}
                {{ product.successor.variant.item.storageLocations }}
                {% if product.successor.variant.item.packageHeight %}
                        {{ product.successor.variant.item.packageHeight }}
                {% endif %}
                {% if product.successor.variant.item.packageLength %}
                        {{ product.successor.variant.item.packageLength }}
                {% endif %}
                {% if product.successor.variant.item.packageWeight %}
                        {{ product.successor.variant.item.packageWeight }}
                {% endif %}
                {% if product.successor.variant.item.packageWidth %}
                        {{ product.successor.variant.item.packageWidth }}
                {% endif %}
                {% if product.successor.variant.item.code %}
                        {{ product.successor.variant.item.code }}
                {% endif %}
                {% if product.successor.variant.item.bundle %}
                {% endif %}
                {% if product.successor.variant.item.cheapestDelivery %}
                {% endif %}
                {% if product.successor.variant.item.freeDelivery %}
                {% endif %}
                {% if product.successor.variant.item.closestFreeDelivery %}
                {% endif %}
                {% if product.successor.variant.item.packageDimensions %}
                {% endif %}
                {% if product.successor.variant.item.image %}
                {% endif %}
                {% if product.successor.variant.item.price %}
                {% endif %}
                {% if product.successor.variant.item.url %}
                {% endif %}
                {{ product.successor.variant.product.id }}
                {{ product.successor.variant.product.name }}
                {{ product.successor.variant.product.trackingId }}
                {{ product.successor.variant.product.dateCreated|date('d. m. Y H:i') }}
                {% if product.successor.variant.product.active %} ... {% endif %}
                {% if product.successor.variant.product.compared %} ... {% endif %}
                {% if product.successor.variant.product.differentVariantPrices %} ... {% endif %}
                {% if product.successor.variant.product.flagNew %} ... {% endif %}
                {% if product.successor.variant.product.flagPromo %} ... {% endif %}
                {% if product.successor.variant.product.flagSecondHand %} ... {% endif %}
                {% if product.successor.variant.product.flagSellout %} ... {% endif %}
                {% if product.successor.variant.product.otherDiscountApplicable %} ... {% endif %}
                {% if product.successor.variant.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.successor.variant.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.successor.variant.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.successor.variant.product.categories %}
                {% endfor %}
                {% for category in product.successor.variant.product.otherCategories %}
                {% endfor %}
                {% for file in product.successor.variant.product.files %}
                {% endfor %}
                {% for image in product.successor.variant.product.images %}
                {% endfor %}
                {% for image in product.successor.variant.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.successor.variant.product.images360 %}
                {% endfor %}
                {% for image in product.successor.variant.product.currentImages %}
                {% endfor %}
                {% for image in product.successor.variant.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.successor.variant.product.otherImages %}
                {% endfor %}
                {% for label in product.successor.variant.product.labels %}
                {% endfor %}
                {% for productEnumValue in product.successor.variant.product.enumValues %}
                {% endfor %}
                {% for product in product.successor.variant.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in product.successor.variant.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.successor.variant.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.successor.variant.product.currentVariants %}
                {% endfor %}
                {% for variant in product.successor.variant.product.variants %}
                {% endfor %}
                {% for variant in product.successor.variant.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.successor.variant.product.videos %}
                {% endfor %}
                {{ product.successor.variant.product.trackingIds }}
                {% if product.successor.variant.product.currentSubName %}
                        {{ product.successor.variant.product.currentSubName }}
                {% endif %}
                {% if product.successor.variant.product.nameSuffix %}
                        {{ product.successor.variant.product.nameSuffix }}
                {% endif %}
                {% if product.successor.variant.product.nameSupplier %}
                        {{ product.successor.variant.product.nameSupplier }}
                {% endif %}
                {% if product.successor.variant.product.text %}
                        {{ product.successor.variant.product.text }}
                {% endif %}
                {% if product.successor.variant.product.attribute %}
                {% endif %}
                {% if product.successor.variant.product.brand %}
                {% endif %}
                {% if product.successor.variant.product.imageForEnumValueId %}
                {% endif %}
                {% if product.successor.variant.product.image %}
                {% endif %}
                {% if product.successor.variant.product.seo %}
                {% endif %}
                {% if product.successor.variant.product.supplier %}
                {% endif %}
                {% if product.successor.variant.product.unit %}
                {% endif %}
                {% if product.successor.variant.product.warranty %}
                {% endif %}
                {% if product.successor.variant.product.contentGrid %}
                        {{ product.successor.variant.product.contentGrid }}
                {% endif %}
                {% for upsell in product.successor.variant.availableUpsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {{ product.successor.variant.url }}
                {{ product.successor.variant.url.absolute }}
                {{ product.successor.variant.url.path }}
                {% if product.successor.variant.legacyRel %}
                        {{ product.successor.variant.legacyRel }}
                {% endif %}
                {% if product.successor.variant.image %}
                        {{ product.successor.variant.image.originalHeight }}
                        {{ product.successor.variant.image.originalWidth }}
                        {{ product.successor.variant.image.url }}
                        {% if product.successor.variant.image.alt %}
                                {{ product.successor.variant.image.alt }}
                        {% endif %}
                        {% if product.successor.variant.image.text %}
                                {{ product.successor.variant.image.text }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if product.successor.warranty %}
                {{ product.successor.warranty.months }}
        {% endif %}
        {% if product.successor.contentGrid %}
                {{ product.successor.contentGrid }}
        {% endif %}
{% endif %}

{% if product.seo %}
        {% if product.seo.description %}
                {{ product.seo.description }}
        {% endif %}
        {% if product.seo.keywords %}
                {{ product.seo.keywords }}
        {% endif %}
        {% if product.seo.title %}
                {{ product.seo.title }}
        {% endif %}
{% endif %}

{% if product.supplier %}
        {{ product.supplier.id }}
        {{ product.supplier.name }}
{% endif %}

{% if product.unit %}
        {{ product.unit.name }}
{% endif %}

{% if product.variant %}
        {{ product.variant.id }}
        {{ product.variant.name }}
        {{ product.variant.trackingId }}
        {% if product.variant.active %} ... {% endif %}
        {% if product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in product.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.variant.item.id }}
        {{ product.variant.item.name }}
        {{ product.variant.item.trackingId }}
        {% if product.variant.item.digital %} ... {% endif %}
        {% if product.variant.item.sellable %} ... {% endif %}
        {% if product.variant.item.service %} ... {% endif %}
        {{ product.variant.item.availability.availableAmount }}
        {{ product.variant.item.availability.availableAmountInShowroom }}
        {{ product.variant.item.availability.availableAmountInStockroom }}
        {{ product.variant.item.availability.availableAmountInStorageCenter }}
        {{ product.variant.item.availability.hours }}
        {{ product.variant.item.availability.totalAmount }}
        {% if product.variant.item.availability.inShowroom %} ... {% endif %}
        {% if product.variant.item.availability.inStock %} ... {% endif %}
        {% if product.variant.item.availability.preorder %} ... {% endif %}
        {% if product.variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in product.variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if product.variant.item.availability.text %}
                {{ product.variant.item.availability.text }}
        {% endif %}
        {% if product.variant.item.availability.dateExpected %}
                {{ product.variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if product.variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in product.variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.variant.item.product.id }}
        {{ product.variant.item.product.name }}
        {{ product.variant.item.product.trackingId }}
        {{ product.variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if product.variant.item.product.active %} ... {% endif %}
        {% if product.variant.item.product.compared %} ... {% endif %}
        {% if product.variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if product.variant.item.product.flagNew %} ... {% endif %}
        {% if product.variant.item.product.flagPromo %} ... {% endif %}
        {% if product.variant.item.product.flagSecondHand %} ... {% endif %}
        {% if product.variant.item.product.flagSellout %} ... {% endif %}
        {% if product.variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if product.variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.variant.item.product.categories %}
        {% endfor %}
        {% for category in product.variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in product.variant.item.product.files %}
        {% endfor %}
        {% for image in product.variant.item.product.images %}
        {% endfor %}
        {% for image in product.variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.variant.item.product.images360 %}
        {% endfor %}
        {% for image in product.variant.item.product.currentImages %}
        {% endfor %}
        {% for image in product.variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.variant.item.product.otherImages %}
        {% endfor %}
        {% for label in product.variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in product.variant.item.product.enumValues %}
        {% endfor %}
        {% for product in product.variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in product.variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in product.variant.item.product.variants %}
        {% endfor %}
        {% for variant in product.variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.variant.item.product.videos %}
        {% endfor %}
        {{ product.variant.item.product.trackingIds }}
        {% if product.variant.item.product.currentSubName %}
                {{ product.variant.item.product.currentSubName }}
        {% endif %}
        {% if product.variant.item.product.nameSuffix %}
                {{ product.variant.item.product.nameSuffix }}
        {% endif %}
        {% if product.variant.item.product.nameSupplier %}
                {{ product.variant.item.product.nameSupplier }}
        {% endif %}
        {% if product.variant.item.product.text %}
                {{ product.variant.item.product.text }}
        {% endif %}
        {% if product.variant.item.product.attribute %}
        {% endif %}
        {% if product.variant.item.product.brand %}
        {% endif %}
        {% if product.variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if product.variant.item.product.image %}
        {% endif %}
        {% if product.variant.item.product.successor %}
        {% endif %}
        {% if product.variant.item.product.seo %}
        {% endif %}
        {% if product.variant.item.product.supplier %}
        {% endif %}
        {% if product.variant.item.product.unit %}
        {% endif %}
        {% if product.variant.item.product.warranty %}
        {% endif %}
        {% if product.variant.item.product.contentGrid %}
                {{ product.variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in product.variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.variant.item.trackingIds }}
        {{ product.variant.item.storageLocations }}
        {% if product.variant.item.packageHeight %}
                {{ product.variant.item.packageHeight }}
        {% endif %}
        {% if product.variant.item.packageLength %}
                {{ product.variant.item.packageLength }}
        {% endif %}
        {% if product.variant.item.packageWeight %}
                {{ product.variant.item.packageWeight }}
        {% endif %}
        {% if product.variant.item.packageWidth %}
                {{ product.variant.item.packageWidth }}
        {% endif %}
        {% if product.variant.item.code %}
                {{ product.variant.item.code }}
        {% endif %}
        {% if product.variant.item.bundle %}
                {% if product.variant.item.bundle.multiPack %} ... {% endif %}
                {% if product.variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if product.variant.item.cheapestDelivery %}
                {{ product.variant.item.cheapestDelivery.inputId }}
                {{ product.variant.item.cheapestDelivery.name }}
                {{ product.variant.item.cheapestDelivery.vatRate }}
                {% if product.variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if product.variant.item.cheapestDelivery.text %}
                        {{ product.variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if product.variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if product.variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if product.variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if product.variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if product.variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if product.variant.item.freeDelivery %}
                {{ product.variant.item.freeDelivery.name }}
                {{ product.variant.item.freeDelivery.vatRate }}
                {% if product.variant.item.freeDelivery.id %}
                        {{ product.variant.item.freeDelivery.id }}
                {% endif %}
                {% if product.variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if product.variant.item.closestFreeDelivery %}
                {{ product.variant.item.closestFreeDelivery.name }}
                {{ product.variant.item.closestFreeDelivery.vatRate }}
                {% if product.variant.item.closestFreeDelivery.id %}
                        {{ product.variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if product.variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if product.variant.item.packageDimensions %}
                {{ product.variant.item.packageDimensions }}
                {{ product.variant.item.packageDimensions.height }}
                {{ product.variant.item.packageDimensions.length }}
                {{ product.variant.item.packageDimensions.width }}
                {{ product.variant.item.packageDimensions.unit }}
        {% endif %}
        {% if product.variant.item.image %}
                {{ product.variant.item.image.originalHeight }}
                {{ product.variant.item.image.originalWidth }}
                {{ product.variant.item.image.url }}
                {% if product.variant.item.image.alt %}
                        {{ product.variant.item.image.alt }}
                {% endif %}
                {% if product.variant.item.image.text %}
                        {{ product.variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if product.variant.item.price %}
                {{ product.variant.item.price.vatRate }}
                {% if product.variant.item.price.discountPercent %}
                        {{ product.variant.item.price.discountPercent }}
                {% endif %}
                {% if product.variant.item.price.discountValidTo %}
                        {{ product.variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if product.variant.item.price.beforeDiscount %}
                {% endif %}
                {% if product.variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if product.variant.item.url %}
                {{ product.variant.item.url }}
                {{ product.variant.item.url.absolute }}
                {{ product.variant.item.url.path }}
        {% endif %}
        {{ product.variant.product.id }}
        {{ product.variant.product.name }}
        {{ product.variant.product.trackingId }}
        {{ product.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if product.variant.product.active %} ... {% endif %}
        {% if product.variant.product.compared %} ... {% endif %}
        {% if product.variant.product.differentVariantPrices %} ... {% endif %}
        {% if product.variant.product.flagNew %} ... {% endif %}
        {% if product.variant.product.flagPromo %} ... {% endif %}
        {% if product.variant.product.flagSecondHand %} ... {% endif %}
        {% if product.variant.product.flagSellout %} ... {% endif %}
        {% if product.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if product.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.variant.product.category.id }}
        {{ product.variant.product.category.productCount }}
        {{ product.variant.product.category.productInStockCount }}
        {{ product.variant.product.category.totalStockQuantity }}
        {{ product.variant.product.category.headline }}
        {{ product.variant.product.category.menuName }}
        {{ product.variant.product.category.name }}
        {% if product.variant.product.category.flagErotic %} ... {% endif %}
        {% if product.variant.product.category.flagImportant %} ... {% endif %}
        {% if product.variant.product.category.noFollow %} ... {% endif %}
        {% for category in product.variant.product.category.subcategories %}
        {% endfor %}
        {% for video in product.variant.product.category.videos %}
        {% endfor %}
        {{ product.variant.product.category.pathIds }}
        {{ product.variant.product.category.pathNames }}
        {{ product.variant.product.category.templateAttribute }}
        {% if product.variant.product.category.subHeadline %}
                {{ product.variant.product.category.subHeadline }}
        {% endif %}
        {% if product.variant.product.category.text %}
                {{ product.variant.product.category.text }}
        {% endif %}
        {% if product.variant.product.category.parent %}
        {% endif %}
        {% if product.variant.product.category.image %}
        {% endif %}
        {% if product.variant.product.category.contentGrid %}
                {{ product.variant.product.category.contentGrid }}
        {% endif %}
        {% for category in product.variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.variant.product.item.id }}
        {{ product.variant.product.item.name }}
        {{ product.variant.product.item.trackingId }}
        {% if product.variant.product.item.digital %} ... {% endif %}
        {% if product.variant.product.item.sellable %} ... {% endif %}
        {% if product.variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in product.variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in product.variant.product.item.availableUpsells %}
        {% endfor %}
        {{ product.variant.product.item.trackingIds }}
        {{ product.variant.product.item.storageLocations }}
        {% if product.variant.product.item.packageHeight %}
                {{ product.variant.product.item.packageHeight }}
        {% endif %}
        {% if product.variant.product.item.packageLength %}
                {{ product.variant.product.item.packageLength }}
        {% endif %}
        {% if product.variant.product.item.packageWeight %}
                {{ product.variant.product.item.packageWeight }}
        {% endif %}
        {% if product.variant.product.item.packageWidth %}
                {{ product.variant.product.item.packageWidth }}
        {% endif %}
        {% if product.variant.product.item.code %}
                {{ product.variant.product.item.code }}
        {% endif %}
        {% if product.variant.product.item.bundle %}
        {% endif %}
        {% if product.variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if product.variant.product.item.freeDelivery %}
        {% endif %}
        {% if product.variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if product.variant.product.item.packageDimensions %}
        {% endif %}
        {% if product.variant.product.item.image %}
        {% endif %}
        {% if product.variant.product.item.price %}
        {% endif %}
        {% if product.variant.product.item.url %}
        {% endif %}
        {% for label in product.variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in product.variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ product.variant.product.rating.count }}
        {% if product.variant.product.rating.voted %} ... {% endif %}
        {% if product.variant.product.rating.average %}
                {{ product.variant.product.rating.average }}
        {% endif %}
        {% for upsell in product.variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.variant.product.url }}
        {{ product.variant.product.url.absolute }}
        {{ product.variant.product.url.path }}
        {% for variantChoiceStep in product.variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variant.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ product.variant.product.variantType.id }}
        {{ product.variant.product.variantType.name }}
        {% for video in product.variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.variant.product.trackingIds }}
        {% if product.variant.product.currentSubName %}
                {{ product.variant.product.currentSubName }}
        {% endif %}
        {% if product.variant.product.nameSuffix %}
                {{ product.variant.product.nameSuffix }}
        {% endif %}
        {% if product.variant.product.nameSupplier %}
                {{ product.variant.product.nameSupplier }}
        {% endif %}
        {% if product.variant.product.text %}
                {{ product.variant.product.text }}
        {% endif %}
        {% if product.variant.product.attribute %}
                {{ product.variant.product.attribute.name }}
                {{ product.variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in product.variant.product.attribute.values %}
                {% endfor %}
                {% if product.variant.product.attribute.description %}
                        {{ product.variant.product.attribute.description }}
                {% endif %}
                {% if product.variant.product.attribute.group %}
                {% endif %}
                {% if product.variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if product.variant.product.brand %}
                {{ product.variant.product.brand.id }}
                {{ product.variant.product.brand.name }}
                {% if product.variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in product.variant.product.brand.categories %}
                {% endfor %}
                {% if product.variant.product.brand.code %}
                        {{ product.variant.product.brand.code }}
                {% endif %}
                {% if product.variant.product.brand.web %}
                        {{ product.variant.product.brand.web }}
                {% endif %}
                {% if product.variant.product.brand.text %}
                        {{ product.variant.product.brand.text }}
                {% endif %}
                {% if product.variant.product.brand.image %}
                {% endif %}
                {% if product.variant.product.brand.seo %}
                {% endif %}
                {% if product.variant.product.brand.contentGrid %}
                        {{ product.variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.variant.product.imageForEnumValueId %}
                {{ product.variant.product.imageForEnumValueId.originalHeight }}
                {{ product.variant.product.imageForEnumValueId.originalWidth }}
                {{ product.variant.product.imageForEnumValueId.url }}
                {% if product.variant.product.imageForEnumValueId.alt %}
                        {{ product.variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.variant.product.imageForEnumValueId.text %}
                        {{ product.variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.variant.product.image %}
                {{ product.variant.product.image.originalHeight }}
                {{ product.variant.product.image.originalWidth }}
                {{ product.variant.product.image.url }}
                {% if product.variant.product.image.alt %}
                        {{ product.variant.product.image.alt }}
                {% endif %}
                {% if product.variant.product.image.text %}
                        {{ product.variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if product.variant.product.successor %}
                {{ product.variant.product.successor.id }}
                {{ product.variant.product.successor.name }}
                {{ product.variant.product.successor.trackingId }}
                {{ product.variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if product.variant.product.successor.active %} ... {% endif %}
                {% if product.variant.product.successor.compared %} ... {% endif %}
                {% if product.variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if product.variant.product.successor.flagNew %} ... {% endif %}
                {% if product.variant.product.successor.flagPromo %} ... {% endif %}
                {% if product.variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if product.variant.product.successor.flagSellout %} ... {% endif %}
                {% if product.variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if product.variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.variant.product.successor.categories %}
                {% endfor %}
                {% for category in product.variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in product.variant.product.successor.files %}
                {% endfor %}
                {% for image in product.variant.product.successor.images %}
                {% endfor %}
                {% for image in product.variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.variant.product.successor.images360 %}
                {% endfor %}
                {% for image in product.variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in product.variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in product.variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in product.variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in product.variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in product.variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in product.variant.product.successor.variants %}
                {% endfor %}
                {% for variant in product.variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.variant.product.successor.videos %}
                {% endfor %}
                {{ product.variant.product.successor.trackingIds }}
                {% if product.variant.product.successor.currentSubName %}
                        {{ product.variant.product.successor.currentSubName }}
                {% endif %}
                {% if product.variant.product.successor.nameSuffix %}
                        {{ product.variant.product.successor.nameSuffix }}
                {% endif %}
                {% if product.variant.product.successor.nameSupplier %}
                        {{ product.variant.product.successor.nameSupplier }}
                {% endif %}
                {% if product.variant.product.successor.text %}
                        {{ product.variant.product.successor.text }}
                {% endif %}
                {% if product.variant.product.successor.attribute %}
                {% endif %}
                {% if product.variant.product.successor.brand %}
                {% endif %}
                {% if product.variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if product.variant.product.successor.image %}
                {% endif %}
                {% if product.variant.product.successor.seo %}
                {% endif %}
                {% if product.variant.product.successor.supplier %}
                {% endif %}
                {% if product.variant.product.successor.unit %}
                {% endif %}
                {% if product.variant.product.successor.warranty %}
                {% endif %}
                {% if product.variant.product.successor.contentGrid %}
                        {{ product.variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.variant.product.seo %}
                {% if product.variant.product.seo.description %}
                        {{ product.variant.product.seo.description }}
                {% endif %}
                {% if product.variant.product.seo.keywords %}
                        {{ product.variant.product.seo.keywords }}
                {% endif %}
                {% if product.variant.product.seo.title %}
                        {{ product.variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.variant.product.supplier %}
                {{ product.variant.product.supplier.id }}
                {{ product.variant.product.supplier.name }}
        {% endif %}
        {% if product.variant.product.unit %}
                {{ product.variant.product.unit.name }}
        {% endif %}
        {% if product.variant.product.warranty %}
                {{ product.variant.product.warranty.months }}
        {% endif %}
        {% if product.variant.product.contentGrid %}
                {{ product.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in product.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ product.variant.url }}
        {{ product.variant.url.absolute }}
        {{ product.variant.url.path }}
        {% if product.variant.legacyRel %}
                {{ product.variant.legacyRel }}
        {% endif %}
        {% if product.variant.image %}
                {{ product.variant.image.originalHeight }}
                {{ product.variant.image.originalWidth }}
                {{ product.variant.image.url }}
                {% if product.variant.image.alt %}
                        {{ product.variant.image.alt }}
                {% endif %}
                {% if product.variant.image.text %}
                        {{ product.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if product.warranty %}
        {{ product.warranty.months }}
{% endif %}

{% if product.contentGrid %}
        {{ product.contentGrid }}
{% endif %}

ProductEnum

Číselník

Attributy objektu ProductEnum

Název

Typ

Popis

id

int

Id

name

string

Název

values

EnumValue[]

Hodnoty

text

html | null

Text

meaning

AttributeMeaning | null

Význam

Příklady:

{{ productenum.id }}
{{ productenum.name }}

{% for enumValue in productenum.values %}
        {{ enumValue.id }}
        {{ enumValue.name }}
        {{ enumValue.enum.id }}
        {{ enumValue.enum.name }}
        {% if enumValue.enum.text %}
                {{ enumValue.enum.text }}
        {% endif %}
        {% if enumValue.enum.meaning %}
                {{ enumValue.enum.meaning.code }}
        {% endif %}
        {% if enumValue.text %}
                {{ enumValue.text }}
        {% endif %}
        {% if enumValue.image %}
                {{ enumValue.image.originalHeight }}
                {{ enumValue.image.originalWidth }}
                {{ enumValue.image.url }}
                {% if enumValue.image.alt %}
                        {{ enumValue.image.alt }}
                {% endif %}
                {% if enumValue.image.text %}
                        {{ enumValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if productenum.text %}
        {{ productenum.text }}
{% endif %}

{% if productenum.meaning %}
        {{ productenum.meaning.code }}
{% endif %}

ProductEnumValue

Hodnota číselníku produktu

Attributy objektu ProductEnumValue

Název

Typ

Popis

id

int

Id

name

string

Název

selected

bool

Je hodnota vybraná? (filtrem, …)

enum

ProductEnum

Číselník

url

Url

URL produktu se zvýrazněnou hodnotou

variants

Variant[] | array

Varianty produktu s hodnotou číselníku

text

html | null

Text

image

Image | null

Obrázek

variantImage

Image | null

Obrázek varianty

Příklady:

{{ productenumvalue.id }}
{{ productenumvalue.name }}
{% if productenumvalue.selected %} ... {% endif %}
{{ productenumvalue.enum.id }}
{{ productenumvalue.enum.name }}
{% for enumValue in productenumvalue.enum.values %}
        {{ enumValue.id }}
        {{ enumValue.name }}
        {% if enumValue.text %}
                {{ enumValue.text }}
        {% endif %}
        {% if enumValue.image %}
                {{ enumValue.image.originalHeight }}
                {{ enumValue.image.originalWidth }}
                {{ enumValue.image.url }}
                {% if enumValue.image.alt %}
                        {{ enumValue.image.alt }}
                {% endif %}
                {% if enumValue.image.text %}
                        {{ enumValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% if productenumvalue.enum.text %}
        {{ productenumvalue.enum.text }}
{% endif %}
{% if productenumvalue.enum.meaning %}
        {{ productenumvalue.enum.meaning.code }}
{% endif %}
{{ productenumvalue.url }}
{{ productenumvalue.url.absolute }}
{{ productenumvalue.url.path }}

{% for variant in productenumvalue.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                        {{ upsell.id }}
                        {{ upsell.name }}
                        {% if upsell.inCart %} ... {% endif %}
                        {% if upsell.code %}
                                {{ upsell.code }}
                        {% endif %}
                        {% if upsell.vatRate %}
                                {{ upsell.vatRate }}
                        {% endif %}
                        {% if upsell.image %}
                        {% endif %}
                        {% if upsell.unit %}
                        {% endif %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {{ enumValue.enum.id }}
                {{ enumValue.enum.name }}
                {% for enumValue in enumValue.enum.values %}
                {% endfor %}
                {% if enumValue.enum.text %}
                        {{ enumValue.enum.text }}
                {% endif %}
                {% if enumValue.enum.meaning %}
                {% endif %}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                        {{ enumValue.image.originalHeight }}
                        {{ enumValue.image.originalWidth }}
                        {{ enumValue.image.url }}
                        {% if enumValue.image.alt %}
                                {{ enumValue.image.alt }}
                        {% endif %}
                        {% if enumValue.image.text %}
                                {{ enumValue.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {{ variant.item.availability.availableAmount }}
        {{ variant.item.availability.availableAmountInShowroom }}
        {{ variant.item.availability.availableAmountInStockroom }}
        {{ variant.item.availability.availableAmountInStorageCenter }}
        {{ variant.item.availability.hours }}
        {{ variant.item.availability.totalAmount }}
        {% if variant.item.availability.inShowroom %} ... {% endif %}
        {% if variant.item.availability.inStock %} ... {% endif %}
        {% if variant.item.availability.preorder %} ... {% endif %}
        {% if variant.item.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in variant.item.availability.deliveryOptions %}
        {% endfor %}
        {% if variant.item.availability.text %}
                {{ variant.item.availability.text }}
        {% endif %}
        {% if variant.item.availability.dateExpected %}
                {{ variant.item.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.availability.deliveryOption %}
        {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.item.product.id }}
        {{ variant.item.product.name }}
        {{ variant.item.product.trackingId }}
        {{ variant.item.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.item.product.active %} ... {% endif %}
        {% if variant.item.product.compared %} ... {% endif %}
        {% if variant.item.product.differentVariantPrices %} ... {% endif %}
        {% if variant.item.product.flagNew %} ... {% endif %}
        {% if variant.item.product.flagPromo %} ... {% endif %}
        {% if variant.item.product.flagSecondHand %} ... {% endif %}
        {% if variant.item.product.flagSellout %} ... {% endif %}
        {% if variant.item.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.item.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.item.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in variant.item.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in variant.item.product.categories %}
        {% endfor %}
        {% for category in variant.item.product.otherCategories %}
        {% endfor %}
        {% for file in variant.item.product.files %}
        {% endfor %}
        {% for image in variant.item.product.images %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.images360 %}
        {% endfor %}
        {% for image in variant.item.product.currentImages %}
        {% endfor %}
        {% for image in variant.item.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.otherImages %}
        {% endfor %}
        {% for label in variant.item.product.labels %}
        {% endfor %}
        {% for productEnumValue in variant.item.product.enumValues %}
        {% endfor %}
        {% for product in variant.item.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in variant.item.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in variant.item.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in variant.item.product.currentVariants %}
        {% endfor %}
        {% for variant in variant.item.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in variant.item.product.videos %}
        {% endfor %}
        {{ variant.item.product.trackingIds }}
        {% if variant.item.product.currentSubName %}
                {{ variant.item.product.currentSubName }}
        {% endif %}
        {% if variant.item.product.nameSuffix %}
                {{ variant.item.product.nameSuffix }}
        {% endif %}
        {% if variant.item.product.nameSupplier %}
                {{ variant.item.product.nameSupplier }}
        {% endif %}
        {% if variant.item.product.text %}
                {{ variant.item.product.text }}
        {% endif %}
        {% if variant.item.product.attribute %}
        {% endif %}
        {% if variant.item.product.brand %}
        {% endif %}
        {% if variant.item.product.imageForEnumValueId %}
        {% endif %}
        {% if variant.item.product.image %}
        {% endif %}
        {% if variant.item.product.successor %}
        {% endif %}
        {% if variant.item.product.seo %}
        {% endif %}
        {% if variant.item.product.supplier %}
        {% endif %}
        {% if variant.item.product.unit %}
        {% endif %}
        {% if variant.item.product.variant %}
        {% endif %}
        {% if variant.item.product.warranty %}
        {% endif %}
        {% if variant.item.product.contentGrid %}
                {{ variant.item.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.item.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
                {% if variant.item.bundle.multiPack %} ... {% endif %}
                {% if variant.item.bundle.price %}
                {% endif %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
                {{ variant.item.cheapestDelivery.inputId }}
                {{ variant.item.cheapestDelivery.name }}
                {{ variant.item.cheapestDelivery.vatRate }}
                {% if variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.currier %} ... {% endif %}
                {% if variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
                {% if variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
                {% if variant.item.cheapestDelivery.free %} ... {% endif %}
                {% if variant.item.cheapestDelivery.pickup %} ... {% endif %}
                {% if variant.item.cheapestDelivery.selected %} ... {% endif %}
                {% if variant.item.cheapestDelivery.text %}
                        {{ variant.item.cheapestDelivery.text }}
                {% endif %}
                {% if variant.item.cheapestDelivery.branch %}
                {% endif %}
                {% if variant.item.cheapestDelivery.carrier %}
                {% endif %}
                {% if variant.item.cheapestDelivery.deliveryDate %}
                {% endif %}
                {% if variant.item.cheapestDelivery.packageType %}
                {% endif %}
                {% if variant.item.cheapestDelivery.image %}
                {% endif %}
        {% endif %}
        {% if variant.item.freeDelivery %}
                {{ variant.item.freeDelivery.name }}
                {{ variant.item.freeDelivery.vatRate }}
                {% if variant.item.freeDelivery.id %}
                        {{ variant.item.freeDelivery.id }}
                {% endif %}
                {% if variant.item.freeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
                {{ variant.item.closestFreeDelivery.name }}
                {{ variant.item.closestFreeDelivery.vatRate }}
                {% if variant.item.closestFreeDelivery.id %}
                        {{ variant.item.closestFreeDelivery.id }}
                {% endif %}
                {% if variant.item.closestFreeDelivery.freeLimit %}
                {% endif %}
        {% endif %}
        {% if variant.item.packageDimensions %}
                {{ variant.item.packageDimensions }}
                {{ variant.item.packageDimensions.height }}
                {{ variant.item.packageDimensions.length }}
                {{ variant.item.packageDimensions.width }}
                {{ variant.item.packageDimensions.unit }}
        {% endif %}
        {% if variant.item.image %}
                {{ variant.item.image.originalHeight }}
                {{ variant.item.image.originalWidth }}
                {{ variant.item.image.url }}
                {% if variant.item.image.alt %}
                        {{ variant.item.image.alt }}
                {% endif %}
                {% if variant.item.image.text %}
                        {{ variant.item.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.item.price %}
                {{ variant.item.price.vatRate }}
                {% if variant.item.price.discountPercent %}
                        {{ variant.item.price.discountPercent }}
                {% endif %}
                {% if variant.item.price.discountValidTo %}
                        {{ variant.item.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variant.item.price.beforeDiscount %}
                {% endif %}
                {% if variant.item.price.discount %}
                {% endif %}
        {% endif %}
        {% if variant.item.url %}
                {{ variant.item.url }}
                {{ variant.item.url.absolute }}
                {{ variant.item.url.path }}
        {% endif %}
        {% if variant.item.variant %}
                {{ variant.item.variant.id }}
                {{ variant.item.variant.name }}
                {{ variant.item.variant.trackingId }}
                {% if variant.item.variant.active %} ... {% endif %}
                {% if variant.item.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.item.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.item.variant.enumValues %}
                {% endfor %}
                {% for image in variant.item.variant.images %}
                {% endfor %}
                {% for upsell in variant.item.variant.availableUpsells %}
                {% endfor %}
                {% if variant.item.variant.legacyRel %}
                        {{ variant.item.variant.legacyRel }}
                {% endif %}
                {% if variant.item.variant.image %}
                {% endif %}
        {% endif %}
        {{ variant.product.id }}
        {{ variant.product.name }}
        {{ variant.product.trackingId }}
        {{ variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.product.active %} ... {% endif %}
        {% if variant.product.compared %} ... {% endif %}
        {% if variant.product.differentVariantPrices %} ... {% endif %}
        {% if variant.product.flagNew %} ... {% endif %}
        {% if variant.product.flagPromo %} ... {% endif %}
        {% if variant.product.flagSecondHand %} ... {% endif %}
        {% if variant.product.flagSellout %} ... {% endif %}
        {% if variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in variant.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.product.category.id }}
        {{ variant.product.category.productCount }}
        {{ variant.product.category.productInStockCount }}
        {{ variant.product.category.totalStockQuantity }}
        {{ variant.product.category.headline }}
        {{ variant.product.category.menuName }}
        {{ variant.product.category.name }}
        {% if variant.product.category.flagErotic %} ... {% endif %}
        {% if variant.product.category.flagImportant %} ... {% endif %}
        {% if variant.product.category.noFollow %} ... {% endif %}
        {% for category in variant.product.category.subcategories %}
        {% endfor %}
        {% for video in variant.product.category.videos %}
        {% endfor %}
        {{ variant.product.category.pathIds }}
        {{ variant.product.category.pathNames }}
        {{ variant.product.category.templateAttribute }}
        {% if variant.product.category.subHeadline %}
                {{ variant.product.category.subHeadline }}
        {% endif %}
        {% if variant.product.category.text %}
                {{ variant.product.category.text }}
        {% endif %}
        {% if variant.product.category.parent %}
        {% endif %}
        {% if variant.product.category.image %}
        {% endif %}
        {% if variant.product.category.contentGrid %}
                {{ variant.product.category.contentGrid }}
        {% endif %}
        {% for category in variant.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in variant.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in variant.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.product.item.id }}
        {{ variant.product.item.name }}
        {{ variant.product.item.trackingId }}
        {% if variant.product.item.digital %} ... {% endif %}
        {% if variant.product.item.sellable %} ... {% endif %}
        {% if variant.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.product.item.availableUpsells %}
        {% endfor %}
        {{ variant.product.item.trackingIds }}
        {{ variant.product.item.storageLocations }}
        {% if variant.product.item.packageHeight %}
                {{ variant.product.item.packageHeight }}
        {% endif %}
        {% if variant.product.item.packageLength %}
                {{ variant.product.item.packageLength }}
        {% endif %}
        {% if variant.product.item.packageWeight %}
                {{ variant.product.item.packageWeight }}
        {% endif %}
        {% if variant.product.item.packageWidth %}
                {{ variant.product.item.packageWidth }}
        {% endif %}
        {% if variant.product.item.code %}
                {{ variant.product.item.code }}
        {% endif %}
        {% if variant.product.item.bundle %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery %}
        {% endif %}
        {% if variant.product.item.freeDelivery %}
        {% endif %}
        {% if variant.product.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.product.item.packageDimensions %}
        {% endif %}
        {% if variant.product.item.image %}
        {% endif %}
        {% if variant.product.item.price %}
        {% endif %}
        {% if variant.product.item.url %}
        {% endif %}
        {% if variant.product.item.variant %}
        {% endif %}
        {% for label in variant.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in variant.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in variant.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variant.product.rating.count }}
        {% if variant.product.rating.voted %} ... {% endif %}
        {% if variant.product.rating.average %}
                {{ variant.product.rating.average }}
        {% endif %}
        {% for upsell in variant.product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.product.url }}
        {{ variant.product.url.absolute }}
        {{ variant.product.url.path }}
        {% for variantChoiceStep in variant.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.variantType.id }}
        {{ variant.product.variantType.name }}
        {% for video in variant.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.trackingIds }}
        {% if variant.product.currentSubName %}
                {{ variant.product.currentSubName }}
        {% endif %}
        {% if variant.product.nameSuffix %}
                {{ variant.product.nameSuffix }}
        {% endif %}
        {% if variant.product.nameSupplier %}
                {{ variant.product.nameSupplier }}
        {% endif %}
        {% if variant.product.text %}
                {{ variant.product.text }}
        {% endif %}
        {% if variant.product.attribute %}
                {{ variant.product.attribute.name }}
                {{ variant.product.attribute.valuesHtml }}
                {% for attributeValueInstance in variant.product.attribute.values %}
                {% endfor %}
                {% if variant.product.attribute.description %}
                        {{ variant.product.attribute.description }}
                {% endif %}
                {% if variant.product.attribute.group %}
                {% endif %}
                {% if variant.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.brand %}
                {{ variant.product.brand.id }}
                {{ variant.product.brand.name }}
                {% if variant.product.brand.flagImportant %} ... {% endif %}
                {% for category in variant.product.brand.categories %}
                {% endfor %}
                {% if variant.product.brand.code %}
                        {{ variant.product.brand.code }}
                {% endif %}
                {% if variant.product.brand.web %}
                        {{ variant.product.brand.web }}
                {% endif %}
                {% if variant.product.brand.text %}
                        {{ variant.product.brand.text }}
                {% endif %}
                {% if variant.product.brand.image %}
                {% endif %}
                {% if variant.product.brand.seo %}
                {% endif %}
                {% if variant.product.brand.contentGrid %}
                        {{ variant.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.imageForEnumValueId %}
                {{ variant.product.imageForEnumValueId.originalHeight }}
                {{ variant.product.imageForEnumValueId.originalWidth }}
                {{ variant.product.imageForEnumValueId.url }}
                {% if variant.product.imageForEnumValueId.alt %}
                        {{ variant.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if variant.product.imageForEnumValueId.text %}
                        {{ variant.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.image %}
                {{ variant.product.image.originalHeight }}
                {{ variant.product.image.originalWidth }}
                {{ variant.product.image.url }}
                {% if variant.product.image.alt %}
                        {{ variant.product.image.alt }}
                {% endif %}
                {% if variant.product.image.text %}
                        {{ variant.product.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor %}
                {{ variant.product.successor.id }}
                {{ variant.product.successor.name }}
                {{ variant.product.successor.trackingId }}
                {{ variant.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if variant.product.successor.active %} ... {% endif %}
                {% if variant.product.successor.compared %} ... {% endif %}
                {% if variant.product.successor.differentVariantPrices %} ... {% endif %}
                {% if variant.product.successor.flagNew %} ... {% endif %}
                {% if variant.product.successor.flagPromo %} ... {% endif %}
                {% if variant.product.successor.flagSecondHand %} ... {% endif %}
                {% if variant.product.successor.flagSellout %} ... {% endif %}
                {% if variant.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if variant.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in variant.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in variant.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in variant.product.successor.categories %}
                {% endfor %}
                {% for category in variant.product.successor.otherCategories %}
                {% endfor %}
                {% for file in variant.product.successor.files %}
                {% endfor %}
                {% for image in variant.product.successor.images %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.images360 %}
                {% endfor %}
                {% for image in variant.product.successor.currentImages %}
                {% endfor %}
                {% for image in variant.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in variant.product.successor.otherImages %}
                {% endfor %}
                {% for label in variant.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in variant.product.successor.enumValues %}
                {% endfor %}
                {% for product in variant.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for upsell in variant.product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in variant.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in variant.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in variant.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in variant.product.successor.videos %}
                {% endfor %}
                {{ variant.product.successor.trackingIds }}
                {% if variant.product.successor.currentSubName %}
                        {{ variant.product.successor.currentSubName }}
                {% endif %}
                {% if variant.product.successor.nameSuffix %}
                        {{ variant.product.successor.nameSuffix }}
                {% endif %}
                {% if variant.product.successor.nameSupplier %}
                        {{ variant.product.successor.nameSupplier }}
                {% endif %}
                {% if variant.product.successor.text %}
                        {{ variant.product.successor.text }}
                {% endif %}
                {% if variant.product.successor.attribute %}
                {% endif %}
                {% if variant.product.successor.brand %}
                {% endif %}
                {% if variant.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if variant.product.successor.image %}
                {% endif %}
                {% if variant.product.successor.seo %}
                {% endif %}
                {% if variant.product.successor.supplier %}
                {% endif %}
                {% if variant.product.successor.unit %}
                {% endif %}
                {% if variant.product.successor.variant %}
                {% endif %}
                {% if variant.product.successor.warranty %}
                {% endif %}
                {% if variant.product.successor.contentGrid %}
                        {{ variant.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.seo %}
                {% if variant.product.seo.description %}
                        {{ variant.product.seo.description }}
                {% endif %}
                {% if variant.product.seo.keywords %}
                        {{ variant.product.seo.keywords }}
                {% endif %}
                {% if variant.product.seo.title %}
                        {{ variant.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if variant.product.supplier %}
                {{ variant.product.supplier.id }}
                {{ variant.product.supplier.name }}
        {% endif %}
        {% if variant.product.unit %}
                {{ variant.product.unit.name }}
        {% endif %}
        {% if variant.product.variant %}
                {{ variant.product.variant.id }}
                {{ variant.product.variant.name }}
                {{ variant.product.variant.trackingId }}
                {% if variant.product.variant.active %} ... {% endif %}
                {% if variant.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.product.variant.enumValues %}
                {% endfor %}
                {% for image in variant.product.variant.images %}
                {% endfor %}
                {% for upsell in variant.product.variant.availableUpsells %}
                {% endfor %}
                {% if variant.product.variant.legacyRel %}
                        {{ variant.product.variant.legacyRel }}
                {% endif %}
                {% if variant.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.warranty %}
                {{ variant.product.warranty.months }}
        {% endif %}
        {% if variant.product.contentGrid %}
                {{ variant.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if productenumvalue.text %}
        {{ productenumvalue.text }}
{% endif %}

{% if productenumvalue.image %}
        {{ productenumvalue.image.originalHeight }}
        {{ productenumvalue.image.originalWidth }}
        {{ productenumvalue.image.url }}
        {% if productenumvalue.image.alt %}
                {{ productenumvalue.image.alt }}
        {% endif %}
        {% if productenumvalue.image.text %}
                {{ productenumvalue.image.text }}
        {% endif %}
{% endif %}

{% if productenumvalue.variantImage %}
        {{ productenumvalue.variantImage.originalHeight }}
        {{ productenumvalue.variantImage.originalWidth }}
        {{ productenumvalue.variantImage.url }}
        {% if productenumvalue.variantImage.alt %}
                {{ productenumvalue.variantImage.alt }}
        {% endif %}
        {% if productenumvalue.variantImage.text %}
                {{ productenumvalue.variantImage.text }}
        {% endif %}
{% endif %}

Rating

Attributy objektu Rating

Název

Typ

Popis

count

int

Počet hlasů

voted

bool

Lze hlasovat?

average

float | null

Průměrně hodnocení

Příklady:

{{ rating.count }}
{% if rating.voted %} ... {% endif %}

{% if rating.average %}
        {{ rating.average }}
{% endif %}

Review

Attributy objektu Review

Název

Typ

Popis

id

int

Id

date

datetime

Datum

rating

int | null

Hodnocení

ratingCommunication

int | null

Hodnocení komunikace obchodu

ratingDeliveryTime

int | null

Hodnocení doby doručení

ratingTransportQuality

int | null

Hodnocení kvality doručení

ratingWebUsability

int | null

Hodnocení použitelnosti webu

cons

string | null

Nevýhody

email

string | null

Email

name

string | null

Jméno

pros

string | null

Výhody

ratingReaction

string | null

Reakce obchodu

text

string | null

TextRecenze

Příklady:

{{ review.id }}
{{ review.date|date('d. m. Y H:i') }}

{% if review.rating %}
        {{ review.rating }}
{% endif %}

{% if review.ratingCommunication %}
        {{ review.ratingCommunication }}
{% endif %}

{% if review.ratingDeliveryTime %}
        {{ review.ratingDeliveryTime }}
{% endif %}

{% if review.ratingTransportQuality %}
        {{ review.ratingTransportQuality }}
{% endif %}

{% if review.ratingWebUsability %}
        {{ review.ratingWebUsability }}
{% endif %}

{% if review.cons %}
        {{ review.cons }}
{% endif %}

{% if review.email %}
        {{ review.email }}
{% endif %}

{% if review.name %}
        {{ review.name }}
{% endif %}

{% if review.pros %}
        {{ review.pros }}
{% endif %}

{% if review.ratingReaction %}
        {{ review.ratingReaction }}
{% endif %}

{% if review.text %}
        {{ review.text }}
{% endif %}

Seo

Attributy objektu Seo

Název

Typ

Popis

description

string | null

SEO description

keywords

string | null

SEO keywords

title

string | null

SEO title

Příklady:

{% if seo.description %}
        {{ seo.description }}
{% endif %}

{% if seo.keywords %}
        {{ seo.keywords }}
{% endif %}

{% if seo.title %}
        {{ seo.title }}
{% endif %}

Shop

Attributy objektu Shop

Název

Typ

Popis

Příklad výstupu

socialProfiles

SocialProfile[]

Socialní sítě

email

string | null

Email

info@my-shop.cz

language

string | null

Jazyk eshopu

name

string | null

Název

MůjShop.cz

phone

string | null

Telefon

+420 777 123 456

url

string | null

URL

https://my-shop.cz

country

Address/Country | null

Země

image

Image | null

Obrázek

Příklady:

{% for socialProfile in shop.socialProfiles %}
        {{ socialProfile.type }}
        {{ socialProfile.url }}
{% endfor %}

{% if shop.email %}
        {{ shop.email }}
{% endif %}

{% if shop.language %}
        {{ shop.language }}
{% endif %}

{% if shop.name %}
        {{ shop.name }}
{% endif %}

{% if shop.phone %}
        {{ shop.phone }}
{% endif %}

{% if shop.url %}
        {{ shop.url }}
{% endif %}

{% if shop.country %}
        {{ shop.country.code }}
        {{ shop.country.flagCircleUrl }}
        {{ shop.country.flagUrl }}
        {{ shop.country.name }}
        {% if shop.country.eU %} ... {% endif %}
{% endif %}

{% if shop.image %}
        {{ shop.image.originalHeight }}
        {{ shop.image.originalWidth }}
        {{ shop.image.url }}
        {% if shop.image.alt %}
                {{ shop.image.alt }}
        {% endif %}
        {% if shop.image.text %}
                {{ shop.image.text }}
        {% endif %}
{% endif %}

SocialProfile

Attributy objektu SocialProfile

Název

Typ

Popis

type

string

Typ sociální sítě

url

string

URL profilu

Příklady:

{{ socialprofile.type }}
{{ socialprofile.url }}

StorageCenter

Attributy objektu StorageCenter

Název

Typ

Popis

name

string

Název

storageRooms

StorageRoom[]

Sklady

shortName

string | null

Zkrácený název

address

Address | null

Adresa střediska

Příklady:

{{ storagecenter.name }}

{% for storageRoom in storagecenter.storageRooms %}
        {{ storageRoom.name }}
        {% if storageRoom.doesSupportLocations %} ... {% endif %}
{% endfor %}

{% if storagecenter.shortName %}
        {{ storagecenter.shortName }}
{% endif %}

{% if storagecenter.address %}
        {{ storagecenter.address.name }}
        {% if storagecenter.address.name.first %}
                {{ storagecenter.address.name.first }}
        {% endif %}
        {% if storagecenter.address.name.last %}
                {{ storagecenter.address.name.last }}
        {% endif %}
        {% if storagecenter.address.city %}
                {{ storagecenter.address.city }}
        {% endif %}
        {% if storagecenter.address.company %}
                {{ storagecenter.address.company }}
        {% endif %}
        {% if storagecenter.address.companyId %}
                {{ storagecenter.address.companyId }}
        {% endif %}
        {% if storagecenter.address.email %}
                {{ storagecenter.address.email }}
        {% endif %}
        {% if storagecenter.address.phone %}
                {{ storagecenter.address.phone }}
        {% endif %}
        {% if storagecenter.address.region %}
                {{ storagecenter.address.region }}
        {% endif %}
        {% if storagecenter.address.street %}
                {{ storagecenter.address.street }}
        {% endif %}
        {% if storagecenter.address.vatId %}
                {{ storagecenter.address.vatId }}
        {% endif %}
        {% if storagecenter.address.zip %}
                {{ storagecenter.address.zip }}
        {% endif %}
        {% if storagecenter.address.country %}
                {{ storagecenter.address.country.code }}
                {{ storagecenter.address.country.flagCircleUrl }}
                {{ storagecenter.address.country.flagUrl }}
                {{ storagecenter.address.country.name }}
                {% if storagecenter.address.country.eU %} ... {% endif %}
        {% endif %}
{% endif %}

StorageRoom

Attributy objektu StorageRoom

Název

Typ

Popis

name

string

Název

doesSupportLocations

bool

Používá skladové pozice?

Příklady:

{{ storageroom.name }}
{% if storageroom.doesSupportLocations %} ... {% endif %}

Store

Attributy objektu Store

Název

Typ

Popis

id

int

Id

name

string

Název

cashiers

Admin[]

Pokladní

attributes

Attribute/AttributeInstance[]

Parametry a hodnoty

images

Image[]

Obrázky

url

Url

URL značky

videos

Video[]

Videa

city

string | null

Město

companyId

string | null

email

string | null

Email

latitude

string | null

GPS - latitude

longitude

string | null

GPS - longitude

phone

string | null

Telefon

street

string | null

Ulice

vatId

string | null

DIČ

zip

string | null

PSČ

text

html | null

Text

country

Address/Country | null

Země

attribute

Attribute/AttributeInstance | null

Atribut s hodnotami

image

Image | null

Obrázek

workingHours

WorkingHours | null

Otevírací doba

contentGrid

array | null

Content grid

Příklady:

{{ store.id }}
{{ store.name }}

{% for admin in store.cashiers %}
        {{ admin.id }}
        {{ admin.email }}
        {{ admin.phone }}
        {{ admin.position }}
        {{ admin.name }}
        {% if admin.name.first %}
                {{ admin.name.first }}
        {% endif %}
        {% if admin.name.last %}
                {{ admin.name.last }}
        {% endif %}
        {{ admin.image.originalHeight }}
        {{ admin.image.originalWidth }}
        {{ admin.image.url }}
        {% if admin.image.alt %}
                {{ admin.image.alt }}
        {% endif %}
        {% if admin.image.text %}
                {{ admin.image.text }}
        {% endif %}
        {% if admin.text %}
                {{ admin.text }}
        {% endif %}
{% endfor %}

{% for attributeInstance in store.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for image in store.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ store.url }}
{{ store.url.absolute }}
{{ store.url.path }}

{% for video in store.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if store.city %}
        {{ store.city }}
{% endif %}

{% if store.companyId %}
        {{ store.companyId }}
{% endif %}

{% if store.email %}
        {{ store.email }}
{% endif %}

{% if store.latitude %}
        {{ store.latitude }}
{% endif %}

{% if store.longitude %}
        {{ store.longitude }}
{% endif %}

{% if store.phone %}
        {{ store.phone }}
{% endif %}

{% if store.street %}
        {{ store.street }}
{% endif %}

{% if store.vatId %}
        {{ store.vatId }}
{% endif %}

{% if store.zip %}
        {{ store.zip }}
{% endif %}

{% if store.text %}
        {{ store.text }}
{% endif %}

{% if store.country %}
        {{ store.country.code }}
        {{ store.country.flagCircleUrl }}
        {{ store.country.flagUrl }}
        {{ store.country.name }}
        {% if store.country.eU %} ... {% endif %}
{% endif %}

{% if store.attribute %}
        {{ store.attribute.name }}
        {{ store.attribute.valuesHtml }}
        {% for attributeValueInstance in store.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                        {{ attributeValueInstance.image.originalHeight }}
                        {{ attributeValueInstance.image.originalWidth }}
                        {{ attributeValueInstance.image.url }}
                        {% if attributeValueInstance.image.alt %}
                                {{ attributeValueInstance.image.alt }}
                        {% endif %}
                        {% if attributeValueInstance.image.text %}
                                {{ attributeValueInstance.image.text }}
                        {% endif %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if store.attribute.description %}
                {{ store.attribute.description }}
        {% endif %}
        {% if store.attribute.group %}
                {{ store.attribute.group.id }}
        {% endif %}
        {% if store.attribute.image %}
                {{ store.attribute.image.originalHeight }}
                {{ store.attribute.image.originalWidth }}
                {{ store.attribute.image.url }}
                {% if store.attribute.image.alt %}
                        {{ store.attribute.image.alt }}
                {% endif %}
                {% if store.attribute.image.text %}
                        {{ store.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}

{% if store.image %}
        {{ store.image.originalHeight }}
        {{ store.image.originalWidth }}
        {{ store.image.url }}
        {% if store.image.alt %}
                {{ store.image.alt }}
        {% endif %}
        {% if store.image.text %}
                {{ store.image.text }}
        {% endif %}
{% endif %}

{% if store.workingHours %}
        {{ store.workingHours.nextClose|date('d. m. Y H:i') }}
        {{ store.workingHours.nextOpen|date('d. m. Y H:i') }}
        {% if store.workingHours.open %} ... {% endif %}
        {% for dayBlock in store.workingHours.forNextDays %}
                {{ dayBlock.dayName }}
                {{ dayBlock.dayNameShort }}
                {{ dayBlock.date|date('d. m. Y H:i') }}
                {% for timeBlock in dayBlock.timeBlocks %}
                        {{ timeBlock.timeBlocks }}
                        {{ timeBlock.end }}
                        {{ timeBlock.separator }}
                        {{ timeBlock.start }}
                {% endfor %}
        {% endfor %}
        {{ store.workingHours.week }}
        {{ store.workingHours.weekFull }}
        {{ store.workingHours.specialCases }}
{% endif %}

{% if store.contentGrid %}
        {{ store.contentGrid }}
{% endif %}

Supplier

Attributy objektu Supplier

Název

Typ

Popis

id

int

Id

name

string

Název

Příklady:

{{ supplier.id }}
{{ supplier.name }}

TextPage

Textová stránka - používáno pro obchodní podmínky atd.

Attributy objektu TextPage

Název

Typ

Popis

id

int

ID

name

string

Název stránky

files

File[]

Soubory (manuály, specifikace, …)

images

Image[]

Obrázky

subPages

TextPage[]

Podstránky

url

Url

URL stránky

videos

Video[]

Videa

code

string | null

Kódové označení pro podmínky v šabloně

text

html | null

Text stránky

image

Image | null

Hlavní obrázek

contentGrid

array | null

Content grid

Příklady:

{{ textpage.id }}
{{ textpage.name }}

{% for file in textpage.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}

{% for image in textpage.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}

{% for textPage in textpage.subPages %}
        {{ textPage.id }}
        {{ textPage.name }}
        {% for file in textPage.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.usage.archive %} ... {% endif %}
                {% if file.usage.graphic %} ... {% endif %}
                {% if file.usage.manual %} ... {% endif %}
                {% if file.usage.other %} ... {% endif %}
                {% if file.usage.sound %} ... {% endif %}
                {% if file.usage.specification %} ... {% endif %}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in textPage.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ textPage.url }}
        {{ textPage.url.absolute }}
        {{ textPage.url.path }}
        {% for video in textPage.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% if textPage.code %}
                {{ textPage.code }}
        {% endif %}
        {% if textPage.text %}
                {{ textPage.text }}
        {% endif %}
        {% if textPage.image %}
                {{ textPage.image.originalHeight }}
                {{ textPage.image.originalWidth }}
                {{ textPage.image.url }}
                {% if textPage.image.alt %}
                        {{ textPage.image.alt }}
                {% endif %}
                {% if textPage.image.text %}
                        {{ textPage.image.text }}
                {% endif %}
        {% endif %}
        {% if textPage.contentGrid %}
                {{ textPage.contentGrid }}
        {% endif %}
{% endfor %}
{{ textpage.url }}
{{ textpage.url.absolute }}
{{ textpage.url.path }}

{% for video in textpage.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if textpage.code %}
        {{ textpage.code }}
{% endif %}

{% if textpage.text %}
        {{ textpage.text }}
{% endif %}

{% if textpage.image %}
        {{ textpage.image.originalHeight }}
        {{ textpage.image.originalWidth }}
        {{ textpage.image.url }}
        {% if textpage.image.alt %}
                {{ textpage.image.alt }}
        {% endif %}
        {% if textpage.image.text %}
                {{ textpage.image.text }}
        {% endif %}
{% endif %}

{% if textpage.contentGrid %}
        {{ textpage.contentGrid }}
{% endif %}

TextTemplate

Textová stránka z šablony - potvrzení objednávky atd.

Attributy objektu TextTemplate

Název

Typ

Popis

name

string

Název

text

html | null

Text stránky

Příklady:

{{ texttemplate.name }}

{% if texttemplate.text %}
        {{ texttemplate.text }}
{% endif %}

TimeBlock

Attributy objektu TimeBlock

Název

Typ

Popis

end

string

Koncový čas otevření

separator

string

Oddělovač času

start

string

Počáteční čas otevření

Příklady:

{{ timeblock }}
{{ timeblock.end }}
{{ timeblock.separator }}
{{ timeblock.start }}

Topic

Attributy objektu Topic

Název

Typ

Popis

id

int

Id

name

string

Název

image

Image

Obrázek

subtopics

Topic[]

Podtémata

url

Url

URL (bez domény)

pathNames

array

Cesta k tématu (názvy)

text

html | null

Text

seo

Seo | null

SEO attributy

parent

Topic | null

Nadřazené téma

Příklady:

{{ topic.id }}
{{ topic.name }}
{{ topic.image.originalHeight }}
{{ topic.image.originalWidth }}
{{ topic.image.url }}
{% if topic.image.alt %}
        {{ topic.image.alt }}
{% endif %}
{% if topic.image.text %}
        {{ topic.image.text }}
{% endif %}

{% for topic in topic.subtopics %}
        {{ topic.id }}
        {{ topic.name }}
        {{ topic.image.originalHeight }}
        {{ topic.image.originalWidth }}
        {{ topic.image.url }}
        {% if topic.image.alt %}
                {{ topic.image.alt }}
        {% endif %}
        {% if topic.image.text %}
                {{ topic.image.text }}
        {% endif %}
        {{ topic.url }}
        {{ topic.url.absolute }}
        {{ topic.url.path }}
        {{ topic.pathNames }}
        {% if topic.text %}
                {{ topic.text }}
        {% endif %}
        {% if topic.seo %}
                {% if topic.seo.description %}
                        {{ topic.seo.description }}
                {% endif %}
                {% if topic.seo.keywords %}
                        {{ topic.seo.keywords }}
                {% endif %}
                {% if topic.seo.title %}
                        {{ topic.seo.title }}
                {% endif %}
        {% endif %}
        {% if topic.parent %}
                {{ topic.parent.id }}
                {{ topic.parent.name }}
                {{ topic.parent.image.originalHeight }}
                {{ topic.parent.image.originalWidth }}
                {{ topic.parent.image.url }}
                {% if topic.parent.image.alt %}
                        {{ topic.parent.image.alt }}
                {% endif %}
                {% if topic.parent.image.text %}
                        {{ topic.parent.image.text }}
                {% endif %}
                {{ topic.parent.url }}
                {{ topic.parent.url.absolute }}
                {{ topic.parent.url.path }}
                {{ topic.parent.pathNames }}
                {% if topic.parent.text %}
                        {{ topic.parent.text }}
                {% endif %}
                {% if topic.parent.seo %}
                        {% if topic.parent.seo.description %}
                                {{ topic.parent.seo.description }}
                        {% endif %}
                        {% if topic.parent.seo.keywords %}
                                {{ topic.parent.seo.keywords }}
                        {% endif %}
                        {% if topic.parent.seo.title %}
                                {{ topic.parent.seo.title }}
                        {% endif %}
                {% endif %}
        {% endif %}
{% endfor %}
{{ topic.url }}
{{ topic.url.absolute }}
{{ topic.url.path }}
{{ topic.pathNames }}

{% if topic.text %}
        {{ topic.text }}
{% endif %}

{% if topic.seo %}
        {% if topic.seo.description %}
                {{ topic.seo.description }}
        {% endif %}
        {% if topic.seo.keywords %}
                {{ topic.seo.keywords }}
        {% endif %}
        {% if topic.seo.title %}
                {{ topic.seo.title }}
        {% endif %}
{% endif %}

{% if topic.parent %}
        {{ topic.parent.id }}
        {{ topic.parent.name }}
        {{ topic.parent.image.originalHeight }}
        {{ topic.parent.image.originalWidth }}
        {{ topic.parent.image.url }}
        {% if topic.parent.image.alt %}
                {{ topic.parent.image.alt }}
        {% endif %}
        {% if topic.parent.image.text %}
                {{ topic.parent.image.text }}
        {% endif %}
        {% for topic in topic.parent.subtopics %}
                {{ topic.id }}
                {{ topic.name }}
                {{ topic.image.originalHeight }}
                {{ topic.image.originalWidth }}
                {{ topic.image.url }}
                {% if topic.image.alt %}
                        {{ topic.image.alt }}
                {% endif %}
                {% if topic.image.text %}
                        {{ topic.image.text }}
                {% endif %}
                {{ topic.url }}
                {{ topic.url.absolute }}
                {{ topic.url.path }}
                {{ topic.pathNames }}
                {% if topic.text %}
                        {{ topic.text }}
                {% endif %}
                {% if topic.seo %}
                        {% if topic.seo.description %}
                                {{ topic.seo.description }}
                        {% endif %}
                        {% if topic.seo.keywords %}
                                {{ topic.seo.keywords }}
                        {% endif %}
                        {% if topic.seo.title %}
                                {{ topic.seo.title }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {{ topic.parent.url }}
        {{ topic.parent.url.absolute }}
        {{ topic.parent.url.path }}
        {{ topic.parent.pathNames }}
        {% if topic.parent.text %}
                {{ topic.parent.text }}
        {% endif %}
        {% if topic.parent.seo %}
                {% if topic.parent.seo.description %}
                        {{ topic.parent.seo.description }}
                {% endif %}
                {% if topic.parent.seo.keywords %}
                        {{ topic.parent.seo.keywords }}
                {% endif %}
                {% if topic.parent.seo.title %}
                        {{ topic.parent.seo.title }}
                {% endif %}
        {% endif %}
{% endif %}

Unit

Attributy objektu Unit

Název

Typ

Popis

name

string

Název množstevní jednotky

Příklady:

{{ unit.name }}

Upsell

Attributy objektu Upsell

Název

Typ

Popis

id

int

ID

name

string

Název položky

inCart

bool

Je v aktuální objednávce?

category

Category

Hlavní kategorie

price

Price

Cena za kus

product

Product

Produkt položky upsellu (pro získání url, popisu, …)

group

UpsellGroup

Skupina

code

string | null

Kód položky

vatRate

float | null

Sazba DPH (%)

image

Image | null

Obrázek položky

unit

Unit | null

Množstevní jednotka

Příklady:

{{ upsell.id }}
{{ upsell.name }}
{% if upsell.inCart %} ... {% endif %}
{{ upsell.category.id }}
{{ upsell.category.productCount }}
{{ upsell.category.productInStockCount }}
{{ upsell.category.totalStockQuantity }}
{{ upsell.category.headline }}
{{ upsell.category.menuName }}
{{ upsell.category.name }}
{% if upsell.category.flagErotic %} ... {% endif %}
{% if upsell.category.flagImportant %} ... {% endif %}
{% if upsell.category.noFollow %} ... {% endif %}
{% for category in upsell.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ upsell.category.url }}
{{ upsell.category.url.absolute }}
{{ upsell.category.url.path }}
{{ upsell.category.variantType.id }}
{{ upsell.category.variantType.name }}
{% for video in upsell.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ upsell.category.pathIds }}
{{ upsell.category.pathNames }}
{{ upsell.category.templateAttribute }}
{% if upsell.category.subHeadline %}
        {{ upsell.category.subHeadline }}
{% endif %}
{% if upsell.category.text %}
        {{ upsell.category.text }}
{% endif %}
{% if upsell.category.parent %}
        {{ upsell.category.parent.id }}
        {{ upsell.category.parent.productCount }}
        {{ upsell.category.parent.productInStockCount }}
        {{ upsell.category.parent.totalStockQuantity }}
        {{ upsell.category.parent.headline }}
        {{ upsell.category.parent.menuName }}
        {{ upsell.category.parent.name }}
        {% if upsell.category.parent.flagErotic %} ... {% endif %}
        {% if upsell.category.parent.flagImportant %} ... {% endif %}
        {% if upsell.category.parent.noFollow %} ... {% endif %}
        {% for category in upsell.category.parent.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.parent.url }}
        {{ upsell.category.parent.url.absolute }}
        {{ upsell.category.parent.url.path }}
        {{ upsell.category.parent.variantType.id }}
        {{ upsell.category.parent.variantType.name }}
        {% for video in upsell.category.parent.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.parent.pathIds }}
        {{ upsell.category.parent.pathNames }}
        {{ upsell.category.parent.templateAttribute }}
        {% if upsell.category.parent.subHeadline %}
                {{ upsell.category.parent.subHeadline }}
        {% endif %}
        {% if upsell.category.parent.text %}
                {{ upsell.category.parent.text }}
        {% endif %}
        {% if upsell.category.parent.image %}
                {{ upsell.category.parent.image.originalHeight }}
                {{ upsell.category.parent.image.originalWidth }}
                {{ upsell.category.parent.image.url }}
                {% if upsell.category.parent.image.alt %}
                        {{ upsell.category.parent.image.alt }}
                {% endif %}
                {% if upsell.category.parent.image.text %}
                        {{ upsell.category.parent.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.parent.contentGrid %}
                {{ upsell.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if upsell.category.image %}
        {{ upsell.category.image.originalHeight }}
        {{ upsell.category.image.originalWidth }}
        {{ upsell.category.image.url }}
        {% if upsell.category.image.alt %}
                {{ upsell.category.image.alt }}
        {% endif %}
        {% if upsell.category.image.text %}
                {{ upsell.category.image.text }}
        {% endif %}
{% endif %}
{% if upsell.category.contentGrid %}
        {{ upsell.category.contentGrid }}
{% endif %}
{{ upsell.price.vatRate }}
{{ upsell.price.current.currency }}
{{ upsell.price.current.formatted }}
{{ upsell.price.current.value }}
{% if upsell.price.discountPercent %}
        {{ upsell.price.discountPercent }}
{% endif %}
{% if upsell.price.discountValidTo %}
        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
{% endif %}
{% if upsell.price.beforeDiscount %}
        {{ upsell.price.beforeDiscount.currency }}
        {{ upsell.price.beforeDiscount.formatted }}
        {{ upsell.price.beforeDiscount.value }}
{% endif %}
{% if upsell.price.discount %}
        {{ upsell.price.discount.currency }}
        {{ upsell.price.discount.formatted }}
        {{ upsell.price.discount.value }}
{% endif %}
{{ upsell.product.id }}
{{ upsell.product.name }}
{{ upsell.product.trackingId }}
{{ upsell.product.dateCreated|date('d. m. Y H:i') }}
{% if upsell.product.active %} ... {% endif %}
{% if upsell.product.compared %} ... {% endif %}
{% if upsell.product.differentVariantPrices %} ... {% endif %}
{% if upsell.product.flagNew %} ... {% endif %}
{% if upsell.product.flagPromo %} ... {% endif %}
{% if upsell.product.flagSecondHand %} ... {% endif %}
{% if upsell.product.flagSellout %} ... {% endif %}
{% if upsell.product.otherDiscountApplicable %} ... {% endif %}
{% if upsell.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in upsell.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ upsell.product.category.id }}
{{ upsell.product.category.productCount }}
{{ upsell.product.category.productInStockCount }}
{{ upsell.product.category.totalStockQuantity }}
{{ upsell.product.category.headline }}
{{ upsell.product.category.menuName }}
{{ upsell.product.category.name }}
{% if upsell.product.category.flagErotic %} ... {% endif %}
{% if upsell.product.category.flagImportant %} ... {% endif %}
{% if upsell.product.category.noFollow %} ... {% endif %}
{% for category in upsell.product.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ upsell.product.category.url }}
{{ upsell.product.category.url.absolute }}
{{ upsell.product.category.url.path }}
{{ upsell.product.category.variantType.id }}
{{ upsell.product.category.variantType.name }}
{% for video in upsell.product.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ upsell.product.category.pathIds }}
{{ upsell.product.category.pathNames }}
{{ upsell.product.category.templateAttribute }}
{% if upsell.product.category.subHeadline %}
        {{ upsell.product.category.subHeadline }}
{% endif %}
{% if upsell.product.category.text %}
        {{ upsell.product.category.text }}
{% endif %}
{% if upsell.product.category.parent %}
        {{ upsell.product.category.parent.id }}
        {{ upsell.product.category.parent.productCount }}
        {{ upsell.product.category.parent.productInStockCount }}
        {{ upsell.product.category.parent.totalStockQuantity }}
        {{ upsell.product.category.parent.headline }}
        {{ upsell.product.category.parent.menuName }}
        {{ upsell.product.category.parent.name }}
        {% if upsell.product.category.parent.flagErotic %} ... {% endif %}
        {% if upsell.product.category.parent.flagImportant %} ... {% endif %}
        {% if upsell.product.category.parent.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.parent.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.parent.videos %}
        {% endfor %}
        {{ upsell.product.category.parent.pathIds }}
        {{ upsell.product.category.parent.pathNames }}
        {{ upsell.product.category.parent.templateAttribute }}
        {% if upsell.product.category.parent.subHeadline %}
                {{ upsell.product.category.parent.subHeadline }}
        {% endif %}
        {% if upsell.product.category.parent.text %}
                {{ upsell.product.category.parent.text }}
        {% endif %}
        {% if upsell.product.category.parent.image %}
        {% endif %}
        {% if upsell.product.category.parent.contentGrid %}
                {{ upsell.product.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if upsell.product.category.image %}
        {{ upsell.product.category.image.originalHeight }}
        {{ upsell.product.category.image.originalWidth }}
        {{ upsell.product.category.image.url }}
        {% if upsell.product.category.image.alt %}
                {{ upsell.product.category.image.alt }}
        {% endif %}
        {% if upsell.product.category.image.text %}
                {{ upsell.product.category.image.text }}
        {% endif %}
{% endif %}
{% if upsell.product.category.contentGrid %}
        {{ upsell.product.category.contentGrid }}
{% endif %}
{% for category in upsell.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in upsell.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in upsell.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in upsell.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in upsell.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in upsell.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in upsell.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in upsell.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in upsell.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ upsell.product.item.id }}
{{ upsell.product.item.name }}
{{ upsell.product.item.trackingId }}
{% if upsell.product.item.digital %} ... {% endif %}
{% if upsell.product.item.sellable %} ... {% endif %}
{% if upsell.product.item.service %} ... {% endif %}
{{ upsell.product.item.availability.availableAmount }}
{{ upsell.product.item.availability.availableAmountInShowroom }}
{{ upsell.product.item.availability.availableAmountInStockroom }}
{{ upsell.product.item.availability.availableAmountInStorageCenter }}
{{ upsell.product.item.availability.hours }}
{{ upsell.product.item.availability.totalAmount }}
{% if upsell.product.item.availability.inShowroom %} ... {% endif %}
{% if upsell.product.item.availability.inStock %} ... {% endif %}
{% if upsell.product.item.availability.preorder %} ... {% endif %}
{% if upsell.product.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in upsell.product.item.availability.deliveryOptions %}
{% endfor %}
{% if upsell.product.item.availability.text %}
        {{ upsell.product.item.availability.text }}
{% endif %}
{% if upsell.product.item.availability.dateExpected %}
        {{ upsell.product.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if upsell.product.item.availability.deliveryOption %}
{% endif %}
{% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{% for upsell in upsell.product.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ upsell.product.item.trackingIds }}
{{ upsell.product.item.storageLocations }}
{% if upsell.product.item.packageHeight %}
        {{ upsell.product.item.packageHeight }}
{% endif %}
{% if upsell.product.item.packageLength %}
        {{ upsell.product.item.packageLength }}
{% endif %}
{% if upsell.product.item.packageWeight %}
        {{ upsell.product.item.packageWeight }}
{% endif %}
{% if upsell.product.item.packageWidth %}
        {{ upsell.product.item.packageWidth }}
{% endif %}
{% if upsell.product.item.code %}
        {{ upsell.product.item.code }}
{% endif %}
{% if upsell.product.item.bundle %}
        {% if upsell.product.item.bundle.multiPack %} ... {% endif %}
        {% if upsell.product.item.bundle.price %}
        {% endif %}
{% endif %}
{% if upsell.product.item.cheapestDelivery %}
        {{ upsell.product.item.cheapestDelivery.inputId }}
        {{ upsell.product.item.cheapestDelivery.name }}
        {{ upsell.product.item.cheapestDelivery.vatRate }}
        {% if upsell.product.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.currier %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.free %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.selected %} ... {% endif %}
        {% if upsell.product.item.cheapestDelivery.text %}
                {{ upsell.product.item.cheapestDelivery.text }}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery.branch %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery.carrier %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery.deliveryDate %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery.packageType %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery.image %}
        {% endif %}
{% endif %}
{% if upsell.product.item.freeDelivery %}
        {{ upsell.product.item.freeDelivery.name }}
        {{ upsell.product.item.freeDelivery.vatRate }}
        {% if upsell.product.item.freeDelivery.id %}
                {{ upsell.product.item.freeDelivery.id }}
        {% endif %}
        {% if upsell.product.item.freeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if upsell.product.item.closestFreeDelivery %}
        {{ upsell.product.item.closestFreeDelivery.name }}
        {{ upsell.product.item.closestFreeDelivery.vatRate }}
        {% if upsell.product.item.closestFreeDelivery.id %}
                {{ upsell.product.item.closestFreeDelivery.id }}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if upsell.product.item.packageDimensions %}
        {{ upsell.product.item.packageDimensions }}
        {{ upsell.product.item.packageDimensions.height }}
        {{ upsell.product.item.packageDimensions.length }}
        {{ upsell.product.item.packageDimensions.width }}
        {{ upsell.product.item.packageDimensions.unit }}
{% endif %}
{% if upsell.product.item.image %}
        {{ upsell.product.item.image.originalHeight }}
        {{ upsell.product.item.image.originalWidth }}
        {{ upsell.product.item.image.url }}
        {% if upsell.product.item.image.alt %}
                {{ upsell.product.item.image.alt }}
        {% endif %}
        {% if upsell.product.item.image.text %}
                {{ upsell.product.item.image.text }}
        {% endif %}
{% endif %}
{% if upsell.product.item.price %}
        {{ upsell.product.item.price.vatRate }}
        {% if upsell.product.item.price.discountPercent %}
                {{ upsell.product.item.price.discountPercent }}
        {% endif %}
        {% if upsell.product.item.price.discountValidTo %}
                {{ upsell.product.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.product.item.price.beforeDiscount %}
        {% endif %}
        {% if upsell.product.item.price.discount %}
        {% endif %}
{% endif %}
{% if upsell.product.item.url %}
        {{ upsell.product.item.url }}
        {{ upsell.product.item.url.absolute }}
        {{ upsell.product.item.url.path }}
{% endif %}
{% if upsell.product.item.variant %}
        {{ upsell.product.item.variant.id }}
        {{ upsell.product.item.variant.name }}
        {{ upsell.product.item.variant.trackingId }}
        {% if upsell.product.item.variant.active %} ... {% endif %}
        {% if upsell.product.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in upsell.product.item.variant.enumValues %}
        {% endfor %}
        {% for image in upsell.product.item.variant.images %}
        {% endfor %}
        {% for upsell in upsell.product.item.variant.availableUpsells %}
        {% endfor %}
        {% if upsell.product.item.variant.legacyRel %}
                {{ upsell.product.item.variant.legacyRel }}
        {% endif %}
        {% if upsell.product.item.variant.image %}
        {% endif %}
{% endif %}
{% for label in upsell.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
                {{ label.image.originalHeight }}
                {{ label.image.originalWidth }}
                {{ label.image.url }}
                {% if label.image.alt %}
                        {{ label.image.alt }}
                {% endif %}
                {% if label.image.text %}
                        {{ label.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for productEnumValue in upsell.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {{ productEnumValue.enum.id }}
        {{ productEnumValue.enum.name }}
        {% for enumValue in productEnumValue.enum.values %}
        {% endfor %}
        {% if productEnumValue.enum.text %}
                {{ productEnumValue.enum.text }}
        {% endif %}
        {% if productEnumValue.enum.meaning %}
        {% endif %}
        {{ productEnumValue.url }}
        {{ productEnumValue.url.absolute }}
        {{ productEnumValue.url.path }}
        {% for variant in productEnumValue.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
                {{ productEnumValue.image.originalHeight }}
                {{ productEnumValue.image.originalWidth }}
                {{ productEnumValue.image.url }}
                {% if productEnumValue.image.alt %}
                        {{ productEnumValue.image.alt }}
                {% endif %}
                {% if productEnumValue.image.text %}
                        {{ productEnumValue.image.text }}
                {% endif %}
        {% endif %}
        {% if productEnumValue.variantImage %}
                {{ productEnumValue.variantImage.originalHeight }}
                {{ productEnumValue.variantImage.originalWidth }}
                {{ productEnumValue.variantImage.url }}
                {% if productEnumValue.variantImage.alt %}
                        {{ productEnumValue.variantImage.alt }}
                {% endif %}
                {% if productEnumValue.variantImage.text %}
                        {{ productEnumValue.variantImage.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for product in upsell.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.category.id }}
        {{ product.category.productCount }}
        {{ product.category.productInStockCount }}
        {{ product.category.totalStockQuantity }}
        {{ product.category.headline }}
        {{ product.category.menuName }}
        {{ product.category.name }}
        {% if product.category.flagErotic %} ... {% endif %}
        {% if product.category.flagImportant %} ... {% endif %}
        {% if product.category.noFollow %} ... {% endif %}
        {% for category in product.category.subcategories %}
        {% endfor %}
        {% for video in product.category.videos %}
        {% endfor %}
        {{ product.category.pathIds }}
        {{ product.category.pathNames }}
        {{ product.category.templateAttribute }}
        {% if product.category.subHeadline %}
                {{ product.category.subHeadline }}
        {% endif %}
        {% if product.category.text %}
                {{ product.category.text }}
        {% endif %}
        {% if product.category.parent %}
        {% endif %}
        {% if product.category.image %}
        {% endif %}
        {% if product.category.contentGrid %}
                {{ product.category.contentGrid }}
        {% endif %}
        {% for category in product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.item.id }}
        {{ product.item.name }}
        {{ product.item.trackingId }}
        {% if product.item.digital %} ... {% endif %}
        {% if product.item.sellable %} ... {% endif %}
        {% if product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in product.item.availableUpsells %}
        {% endfor %}
        {{ product.item.trackingIds }}
        {{ product.item.storageLocations }}
        {% if product.item.packageHeight %}
                {{ product.item.packageHeight }}
        {% endif %}
        {% if product.item.packageLength %}
                {{ product.item.packageLength }}
        {% endif %}
        {% if product.item.packageWeight %}
                {{ product.item.packageWeight }}
        {% endif %}
        {% if product.item.packageWidth %}
                {{ product.item.packageWidth }}
        {% endif %}
        {% if product.item.code %}
                {{ product.item.code }}
        {% endif %}
        {% if product.item.bundle %}
        {% endif %}
        {% if product.item.cheapestDelivery %}
        {% endif %}
        {% if product.item.freeDelivery %}
        {% endif %}
        {% if product.item.closestFreeDelivery %}
        {% endif %}
        {% if product.item.packageDimensions %}
        {% endif %}
        {% if product.item.image %}
        {% endif %}
        {% if product.item.price %}
        {% endif %}
        {% if product.item.url %}
        {% endif %}
        {% if product.item.variant %}
        {% endif %}
        {% for label in product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {{ product.rating.count }}
        {% if product.rating.voted %} ... {% endif %}
        {% if product.rating.average %}
                {{ product.rating.average }}
        {% endif %}
        {% for upsell in product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.url }}
        {{ product.url.absolute }}
        {{ product.url.path }}
        {% for variantChoiceStep in product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ product.variantType.id }}
        {{ product.variantType.name }}
        {% for video in product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
                {{ product.attribute.name }}
                {{ product.attribute.valuesHtml }}
                {% for attributeValueInstance in product.attribute.values %}
                {% endfor %}
                {% if product.attribute.description %}
                        {{ product.attribute.description }}
                {% endif %}
                {% if product.attribute.group %}
                {% endif %}
                {% if product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if product.brand %}
                {{ product.brand.id }}
                {{ product.brand.name }}
                {% if product.brand.flagImportant %} ... {% endif %}
                {% for category in product.brand.categories %}
                {% endfor %}
                {% if product.brand.code %}
                        {{ product.brand.code }}
                {% endif %}
                {% if product.brand.web %}
                        {{ product.brand.web }}
                {% endif %}
                {% if product.brand.text %}
                        {{ product.brand.text }}
                {% endif %}
                {% if product.brand.image %}
                {% endif %}
                {% if product.brand.seo %}
                {% endif %}
                {% if product.brand.contentGrid %}
                        {{ product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.imageForEnumValueId %}
                {{ product.imageForEnumValueId.originalHeight }}
                {{ product.imageForEnumValueId.originalWidth }}
                {{ product.imageForEnumValueId.url }}
                {% if product.imageForEnumValueId.alt %}
                        {{ product.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.imageForEnumValueId.text %}
                        {{ product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.image %}
                {{ product.image.originalHeight }}
                {{ product.image.originalWidth }}
                {{ product.image.url }}
                {% if product.image.alt %}
                        {{ product.image.alt }}
                {% endif %}
                {% if product.image.text %}
                        {{ product.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor %}
                {{ product.successor.id }}
                {{ product.successor.name }}
                {{ product.successor.trackingId }}
                {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if product.successor.active %} ... {% endif %}
                {% if product.successor.compared %} ... {% endif %}
                {% if product.successor.differentVariantPrices %} ... {% endif %}
                {% if product.successor.flagNew %} ... {% endif %}
                {% if product.successor.flagPromo %} ... {% endif %}
                {% if product.successor.flagSecondHand %} ... {% endif %}
                {% if product.successor.flagSellout %} ... {% endif %}
                {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.successor.categories %}
                {% endfor %}
                {% for category in product.successor.otherCategories %}
                {% endfor %}
                {% for file in product.successor.files %}
                {% endfor %}
                {% for image in product.successor.images %}
                {% endfor %}
                {% for image in product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.successor.images360 %}
                {% endfor %}
                {% for image in product.successor.currentImages %}
                {% endfor %}
                {% for image in product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.successor.otherImages %}
                {% endfor %}
                {% for label in product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in product.successor.enumValues %}
                {% endfor %}
                {% for upsell in product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.successor.currentVariants %}
                {% endfor %}
                {% for variant in product.successor.variants %}
                {% endfor %}
                {% for variant in product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.successor.videos %}
                {% endfor %}
                {{ product.successor.trackingIds }}
                {% if product.successor.currentSubName %}
                        {{ product.successor.currentSubName }}
                {% endif %}
                {% if product.successor.nameSuffix %}
                        {{ product.successor.nameSuffix }}
                {% endif %}
                {% if product.successor.nameSupplier %}
                        {{ product.successor.nameSupplier }}
                {% endif %}
                {% if product.successor.text %}
                        {{ product.successor.text }}
                {% endif %}
                {% if product.successor.attribute %}
                {% endif %}
                {% if product.successor.brand %}
                {% endif %}
                {% if product.successor.imageForEnumValueId %}
                {% endif %}
                {% if product.successor.image %}
                {% endif %}
                {% if product.successor.seo %}
                {% endif %}
                {% if product.successor.supplier %}
                {% endif %}
                {% if product.successor.unit %}
                {% endif %}
                {% if product.successor.variant %}
                {% endif %}
                {% if product.successor.warranty %}
                {% endif %}
                {% if product.successor.contentGrid %}
                        {{ product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.seo %}
                {% if product.seo.description %}
                        {{ product.seo.description }}
                {% endif %}
                {% if product.seo.keywords %}
                        {{ product.seo.keywords }}
                {% endif %}
                {% if product.seo.title %}
                        {{ product.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.supplier %}
                {{ product.supplier.id }}
                {{ product.supplier.name }}
        {% endif %}
        {% if product.unit %}
                {{ product.unit.name }}
        {% endif %}
        {% if product.variant %}
                {{ product.variant.id }}
                {{ product.variant.name }}
                {{ product.variant.trackingId }}
                {% if product.variant.active %} ... {% endif %}
                {% if product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in product.variant.enumValues %}
                {% endfor %}
                {% for image in product.variant.images %}
                {% endfor %}
                {% for upsell in product.variant.availableUpsells %}
                {% endfor %}
                {% if product.variant.legacyRel %}
                        {{ product.variant.legacyRel }}
                {% endif %}
                {% if product.variant.image %}
                {% endif %}
        {% endif %}
        {% if product.warranty %}
                {{ product.warranty.months }}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ upsell.product.rating.count }}
{% if upsell.product.rating.voted %} ... {% endif %}
{% if upsell.product.rating.average %}
        {{ upsell.product.rating.average }}
{% endif %}
{% for upsell in upsell.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ upsell.product.url }}
{{ upsell.product.url.absolute }}
{{ upsell.product.url.path }}
{% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
                {{ variantChoice.inputValue }}
                {{ variantChoice.name }}
                {% if variantChoice.selected %} ... {% endif %}
                {% if variantChoice.color %}
                        {{ variantChoice.color }}
                {% endif %}
                {% if variantChoice.description %}
                        {{ variantChoice.description }}
                {% endif %}
                {% if variantChoice.availability %}
                {% endif %}
                {% if variantChoice.bundle %}
                {% endif %}
                {% if variantChoice.icon %}
                {% endif %}
                {% if variantChoice.image %}
                {% endif %}
                {% if variantChoice.price %}
                {% endif %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
                {{ variantChoiceStep.icon.originalHeight }}
                {{ variantChoiceStep.icon.originalWidth }}
                {{ variantChoiceStep.icon.url }}
                {% if variantChoiceStep.icon.alt %}
                        {{ variantChoiceStep.icon.alt }}
                {% endif %}
                {% if variantChoiceStep.icon.text %}
                        {{ variantChoiceStep.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
                {{ variantChoiceStep.infoIcon.originalHeight }}
                {{ variantChoiceStep.infoIcon.originalWidth }}
                {{ variantChoiceStep.infoIcon.url }}
                {% if variantChoiceStep.infoIcon.alt %}
                        {{ variantChoiceStep.infoIcon.alt }}
                {% endif %}
                {% if variantChoiceStep.infoIcon.text %}
                        {{ variantChoiceStep.infoIcon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.info %}
                {{ variantChoiceStep.info.id }}
                {{ variantChoiceStep.info.name }}
                {% for file in variantChoiceStep.info.files %}
                {% endfor %}
                {% for image in variantChoiceStep.info.images %}
                {% endfor %}
                {% for textPage in variantChoiceStep.info.subPages %}
                {% endfor %}
                {% for video in variantChoiceStep.info.videos %}
                {% endfor %}
                {% if variantChoiceStep.info.code %}
                        {{ variantChoiceStep.info.code }}
                {% endif %}
                {% if variantChoiceStep.info.text %}
                        {{ variantChoiceStep.info.text }}
                {% endif %}
                {% if variantChoiceStep.info.image %}
                {% endif %}
                {% if variantChoiceStep.info.contentGrid %}
                        {{ variantChoiceStep.info.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
                {{ variantChoiceStep.selectedChoice.inputValue }}
                {{ variantChoiceStep.selectedChoice.name }}
                {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                {% if variantChoiceStep.selectedChoice.color %}
                        {{ variantChoiceStep.selectedChoice.color }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.description %}
                        {{ variantChoiceStep.selectedChoice.description }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.availability %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.bundle %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.icon %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.image %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.price %}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in upsell.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in upsell.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in upsell.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ upsell.product.variantType.id }}
{{ upsell.product.variantType.name }}
{% for video in upsell.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ upsell.product.trackingIds }}
{% if upsell.product.currentSubName %}
        {{ upsell.product.currentSubName }}
{% endif %}
{% if upsell.product.nameSuffix %}
        {{ upsell.product.nameSuffix }}
{% endif %}
{% if upsell.product.nameSupplier %}
        {{ upsell.product.nameSupplier }}
{% endif %}
{% if upsell.product.text %}
        {{ upsell.product.text }}
{% endif %}
{% if upsell.product.attribute %}
        {{ upsell.product.attribute.name }}
        {{ upsell.product.attribute.valuesHtml }}
        {% for attributeValueInstance in upsell.product.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if upsell.product.attribute.description %}
                {{ upsell.product.attribute.description }}
        {% endif %}
        {% if upsell.product.attribute.group %}
                {{ upsell.product.attribute.group.id }}
        {% endif %}
        {% if upsell.product.attribute.image %}
                {{ upsell.product.attribute.image.originalHeight }}
                {{ upsell.product.attribute.image.originalWidth }}
                {{ upsell.product.attribute.image.url }}
                {% if upsell.product.attribute.image.alt %}
                        {{ upsell.product.attribute.image.alt }}
                {% endif %}
                {% if upsell.product.attribute.image.text %}
                        {{ upsell.product.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if upsell.product.brand %}
        {{ upsell.product.brand.id }}
        {{ upsell.product.brand.name }}
        {% if upsell.product.brand.flagImportant %} ... {% endif %}
        {% for category in upsell.product.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.brand.url }}
        {{ upsell.product.brand.url.absolute }}
        {{ upsell.product.brand.url.path }}
        {{ upsell.product.brand.categoryUrl }}
        {{ upsell.product.brand.categoryUrl.absolute }}
        {{ upsell.product.brand.categoryUrl.path }}
        {% if upsell.product.brand.code %}
                {{ upsell.product.brand.code }}
        {% endif %}
        {% if upsell.product.brand.web %}
                {{ upsell.product.brand.web }}
        {% endif %}
        {% if upsell.product.brand.text %}
                {{ upsell.product.brand.text }}
        {% endif %}
        {% if upsell.product.brand.image %}
                {{ upsell.product.brand.image.originalHeight }}
                {{ upsell.product.brand.image.originalWidth }}
                {{ upsell.product.brand.image.url }}
                {% if upsell.product.brand.image.alt %}
                        {{ upsell.product.brand.image.alt }}
                {% endif %}
                {% if upsell.product.brand.image.text %}
                        {{ upsell.product.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand.seo %}
                {% if upsell.product.brand.seo.description %}
                        {{ upsell.product.brand.seo.description }}
                {% endif %}
                {% if upsell.product.brand.seo.keywords %}
                        {{ upsell.product.brand.seo.keywords }}
                {% endif %}
                {% if upsell.product.brand.seo.title %}
                        {{ upsell.product.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand.contentGrid %}
                {{ upsell.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if upsell.product.imageForEnumValueId %}
        {{ upsell.product.imageForEnumValueId.originalHeight }}
        {{ upsell.product.imageForEnumValueId.originalWidth }}
        {{ upsell.product.imageForEnumValueId.url }}
        {% if upsell.product.imageForEnumValueId.alt %}
                {{ upsell.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if upsell.product.imageForEnumValueId.text %}
                {{ upsell.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if upsell.product.image %}
        {{ upsell.product.image.originalHeight }}
        {{ upsell.product.image.originalWidth }}
        {{ upsell.product.image.url }}
        {% if upsell.product.image.alt %}
                {{ upsell.product.image.alt }}
        {% endif %}
        {% if upsell.product.image.text %}
                {{ upsell.product.image.text }}
        {% endif %}
{% endif %}
{% if upsell.product.successor %}
        {{ upsell.product.successor.id }}
        {{ upsell.product.successor.name }}
        {{ upsell.product.successor.trackingId }}
        {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.successor.active %} ... {% endif %}
        {% if upsell.product.successor.compared %} ... {% endif %}
        {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.successor.flagNew %} ... {% endif %}
        {% if upsell.product.successor.flagPromo %} ... {% endif %}
        {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
        {% if upsell.product.successor.flagSellout %} ... {% endif %}
        {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.successor.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.successor.category.id }}
        {{ upsell.product.successor.category.productCount }}
        {{ upsell.product.successor.category.productInStockCount }}
        {{ upsell.product.successor.category.totalStockQuantity }}
        {{ upsell.product.successor.category.headline }}
        {{ upsell.product.successor.category.menuName }}
        {{ upsell.product.successor.category.name }}
        {% if upsell.product.successor.category.flagErotic %} ... {% endif %}
        {% if upsell.product.successor.category.flagImportant %} ... {% endif %}
        {% if upsell.product.successor.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.successor.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.successor.category.videos %}
        {% endfor %}
        {{ upsell.product.successor.category.pathIds }}
        {{ upsell.product.successor.category.pathNames }}
        {{ upsell.product.successor.category.templateAttribute }}
        {% if upsell.product.successor.category.subHeadline %}
                {{ upsell.product.successor.category.subHeadline }}
        {% endif %}
        {% if upsell.product.successor.category.text %}
                {{ upsell.product.successor.category.text }}
        {% endif %}
        {% if upsell.product.successor.category.parent %}
        {% endif %}
        {% if upsell.product.successor.category.image %}
        {% endif %}
        {% if upsell.product.successor.category.contentGrid %}
                {{ upsell.product.successor.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.successor.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.successor.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.successor.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.successor.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.successor.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.successor.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.successor.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.successor.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.successor.item.id }}
        {{ upsell.product.successor.item.name }}
        {{ upsell.product.successor.item.trackingId }}
        {% if upsell.product.successor.item.digital %} ... {% endif %}
        {% if upsell.product.successor.item.sellable %} ... {% endif %}
        {% if upsell.product.successor.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.successor.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in upsell.product.successor.item.availableUpsells %}
        {% endfor %}
        {{ upsell.product.successor.item.trackingIds }}
        {{ upsell.product.successor.item.storageLocations }}
        {% if upsell.product.successor.item.packageHeight %}
                {{ upsell.product.successor.item.packageHeight }}
        {% endif %}
        {% if upsell.product.successor.item.packageLength %}
                {{ upsell.product.successor.item.packageLength }}
        {% endif %}
        {% if upsell.product.successor.item.packageWeight %}
                {{ upsell.product.successor.item.packageWeight }}
        {% endif %}
        {% if upsell.product.successor.item.packageWidth %}
                {{ upsell.product.successor.item.packageWidth }}
        {% endif %}
        {% if upsell.product.successor.item.code %}
                {{ upsell.product.successor.item.code }}
        {% endif %}
        {% if upsell.product.successor.item.bundle %}
        {% endif %}
        {% if upsell.product.successor.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.successor.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.successor.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.successor.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.successor.item.image %}
        {% endif %}
        {% if upsell.product.successor.item.price %}
        {% endif %}
        {% if upsell.product.successor.item.url %}
        {% endif %}
        {% if upsell.product.successor.item.variant %}
        {% endif %}
        {% for label in upsell.product.successor.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.successor.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.successor.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.successor.rating.count }}
        {% if upsell.product.successor.rating.voted %} ... {% endif %}
        {% if upsell.product.successor.rating.average %}
                {{ upsell.product.successor.rating.average }}
        {% endif %}
        {% for upsell in upsell.product.successor.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.successor.url }}
        {{ upsell.product.successor.url.absolute }}
        {{ upsell.product.successor.url.path }}
        {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.successor.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.successor.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.successor.variantType.id }}
        {{ upsell.product.successor.variantType.name }}
        {% for video in upsell.product.successor.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.successor.trackingIds }}
        {% if upsell.product.successor.currentSubName %}
                {{ upsell.product.successor.currentSubName }}
        {% endif %}
        {% if upsell.product.successor.nameSuffix %}
                {{ upsell.product.successor.nameSuffix }}
        {% endif %}
        {% if upsell.product.successor.nameSupplier %}
                {{ upsell.product.successor.nameSupplier }}
        {% endif %}
        {% if upsell.product.successor.text %}
                {{ upsell.product.successor.text }}
        {% endif %}
        {% if upsell.product.successor.attribute %}
                {{ upsell.product.successor.attribute.name }}
                {{ upsell.product.successor.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.successor.attribute.values %}
                {% endfor %}
                {% if upsell.product.successor.attribute.description %}
                        {{ upsell.product.successor.attribute.description }}
                {% endif %}
                {% if upsell.product.successor.attribute.group %}
                {% endif %}
                {% if upsell.product.successor.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor.brand %}
                {{ upsell.product.successor.brand.id }}
                {{ upsell.product.successor.brand.name }}
                {% if upsell.product.successor.brand.flagImportant %} ... {% endif %}
                {% for category in upsell.product.successor.brand.categories %}
                {% endfor %}
                {% if upsell.product.successor.brand.code %}
                        {{ upsell.product.successor.brand.code }}
                {% endif %}
                {% if upsell.product.successor.brand.web %}
                        {{ upsell.product.successor.brand.web }}
                {% endif %}
                {% if upsell.product.successor.brand.text %}
                        {{ upsell.product.successor.brand.text }}
                {% endif %}
                {% if upsell.product.successor.brand.image %}
                {% endif %}
                {% if upsell.product.successor.brand.seo %}
                {% endif %}
                {% if upsell.product.successor.brand.contentGrid %}
                        {{ upsell.product.successor.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor.imageForEnumValueId %}
                {{ upsell.product.successor.imageForEnumValueId.originalHeight }}
                {{ upsell.product.successor.imageForEnumValueId.originalWidth }}
                {{ upsell.product.successor.imageForEnumValueId.url }}
                {% if upsell.product.successor.imageForEnumValueId.alt %}
                        {{ upsell.product.successor.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId.text %}
                        {{ upsell.product.successor.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor.image %}
                {{ upsell.product.successor.image.originalHeight }}
                {{ upsell.product.successor.image.originalWidth }}
                {{ upsell.product.successor.image.url }}
                {% if upsell.product.successor.image.alt %}
                        {{ upsell.product.successor.image.alt }}
                {% endif %}
                {% if upsell.product.successor.image.text %}
                        {{ upsell.product.successor.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor.seo %}
                {% if upsell.product.successor.seo.description %}
                        {{ upsell.product.successor.seo.description }}
                {% endif %}
                {% if upsell.product.successor.seo.keywords %}
                        {{ upsell.product.successor.seo.keywords }}
                {% endif %}
                {% if upsell.product.successor.seo.title %}
                        {{ upsell.product.successor.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor.supplier %}
                {{ upsell.product.successor.supplier.id }}
                {{ upsell.product.successor.supplier.name }}
        {% endif %}
        {% if upsell.product.successor.unit %}
                {{ upsell.product.successor.unit.name }}
        {% endif %}
        {% if upsell.product.successor.variant %}
                {{ upsell.product.successor.variant.id }}
                {{ upsell.product.successor.variant.name }}
                {{ upsell.product.successor.variant.trackingId }}
                {% if upsell.product.successor.variant.active %} ... {% endif %}
                {% if upsell.product.successor.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.successor.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.successor.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.successor.variant.images %}
                {% endfor %}
                {% for upsell in upsell.product.successor.variant.availableUpsells %}
                {% endfor %}
                {% if upsell.product.successor.variant.legacyRel %}
                        {{ upsell.product.successor.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.successor.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor.warranty %}
                {{ upsell.product.successor.warranty.months }}
        {% endif %}
        {% if upsell.product.successor.contentGrid %}
                {{ upsell.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if upsell.product.seo %}
        {% if upsell.product.seo.description %}
                {{ upsell.product.seo.description }}
        {% endif %}
        {% if upsell.product.seo.keywords %}
                {{ upsell.product.seo.keywords }}
        {% endif %}
        {% if upsell.product.seo.title %}
                {{ upsell.product.seo.title }}
        {% endif %}
{% endif %}
{% if upsell.product.supplier %}
        {{ upsell.product.supplier.id }}
        {{ upsell.product.supplier.name }}
{% endif %}
{% if upsell.product.unit %}
        {{ upsell.product.unit.name }}
{% endif %}
{% if upsell.product.variant %}
        {{ upsell.product.variant.id }}
        {{ upsell.product.variant.name }}
        {{ upsell.product.variant.trackingId }}
        {% if upsell.product.variant.active %} ... {% endif %}
        {% if upsell.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in upsell.product.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variant.item.id }}
        {{ upsell.product.variant.item.name }}
        {{ upsell.product.variant.item.trackingId }}
        {% if upsell.product.variant.item.digital %} ... {% endif %}
        {% if upsell.product.variant.item.sellable %} ... {% endif %}
        {% if upsell.product.variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in upsell.product.variant.item.availableUpsells %}
        {% endfor %}
        {{ upsell.product.variant.item.trackingIds }}
        {{ upsell.product.variant.item.storageLocations }}
        {% if upsell.product.variant.item.packageHeight %}
                {{ upsell.product.variant.item.packageHeight }}
        {% endif %}
        {% if upsell.product.variant.item.packageLength %}
                {{ upsell.product.variant.item.packageLength }}
        {% endif %}
        {% if upsell.product.variant.item.packageWeight %}
                {{ upsell.product.variant.item.packageWeight }}
        {% endif %}
        {% if upsell.product.variant.item.packageWidth %}
                {{ upsell.product.variant.item.packageWidth }}
        {% endif %}
        {% if upsell.product.variant.item.code %}
                {{ upsell.product.variant.item.code }}
        {% endif %}
        {% if upsell.product.variant.item.bundle %}
        {% endif %}
        {% if upsell.product.variant.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.variant.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.variant.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.variant.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.variant.item.image %}
        {% endif %}
        {% if upsell.product.variant.item.price %}
        {% endif %}
        {% if upsell.product.variant.item.url %}
        {% endif %}
        {% for upsell in upsell.product.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variant.url }}
        {{ upsell.product.variant.url.absolute }}
        {{ upsell.product.variant.url.path }}
        {% if upsell.product.variant.legacyRel %}
                {{ upsell.product.variant.legacyRel }}
        {% endif %}
        {% if upsell.product.variant.image %}
                {{ upsell.product.variant.image.originalHeight }}
                {{ upsell.product.variant.image.originalWidth }}
                {{ upsell.product.variant.image.url }}
                {% if upsell.product.variant.image.alt %}
                        {{ upsell.product.variant.image.alt }}
                {% endif %}
                {% if upsell.product.variant.image.text %}
                        {{ upsell.product.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if upsell.product.warranty %}
        {{ upsell.product.warranty.months }}
{% endif %}
{% if upsell.product.contentGrid %}
        {{ upsell.product.contentGrid }}
{% endif %}
{{ upsell.group.id }}
{{ upsell.group.requiredNoteMaximumLength }}
{{ upsell.group.name }}
{% if upsell.group.requiredNote %} ... {% endif %}
{% if upsell.group.requiredUpload %} ... {% endif %}
{% if upsell.group.singleSelection %} ... {% endif %}
{% if upsell.group.text %}
        {{ upsell.group.text }}
{% endif %}
{% if upsell.group.uploadInput %}
        {{ upsell.group.uploadInput }}
{% endif %}

{% if upsell.code %}
        {{ upsell.code }}
{% endif %}

{% if upsell.vatRate %}
        {{ upsell.vatRate }}
{% endif %}

{% if upsell.image %}
        {{ upsell.image.originalHeight }}
        {{ upsell.image.originalWidth }}
        {{ upsell.image.url }}
        {% if upsell.image.alt %}
                {{ upsell.image.alt }}
        {% endif %}
        {% if upsell.image.text %}
                {{ upsell.image.text }}
        {% endif %}
{% endif %}

{% if upsell.unit %}
        {{ upsell.unit.name }}
{% endif %}

UpsellGroup

Attributy objektu UpsellGroup

Název

Typ

Popis

id

int

ID

requiredNoteMaximumLength

int

Maximální délka poznámky od zákazníka

name

string

Název skupiny

requiredNote

bool

Je vyžadována poznámka od zákazníka?

requiredUpload

bool

Je vyžadován upload souboru od zákazníka?

singleSelection

bool

Režim výběru

text

html | null

Text

uploadInput

html | null

HTML pro file upload input

Příklady:

{{ upsellgroup.id }}
{{ upsellgroup.requiredNoteMaximumLength }}
{{ upsellgroup.name }}
{% if upsellgroup.requiredNote %} ... {% endif %}
{% if upsellgroup.requiredUpload %} ... {% endif %}
{% if upsellgroup.singleSelection %} ... {% endif %}

{% if upsellgroup.text %}
        {{ upsellgroup.text }}
{% endif %}

{% if upsellgroup.uploadInput %}
        {{ upsellgroup.uploadInput }}
{% endif %}

Url

Attributy objektu Url

Název

Typ

Popis

Příklad výstupu

absolute

string

URL včetně domény a protokolu

https://www.example.org/product-1

path

string

URL v rámci domény

/product-1

Příklady:

{{ url }}
{{ url.absolute }}
{{ url.path }}

UserPointChange

Změna bodů věrnostního programu

Attributy objektu UserPointChange

Název

Typ

Popis

amount

int

Počet bodů

text

string

Popis

date

datetime

Datum

dateExpire

datetime | null

Datum expirace

Příklady:

{{ userpointchange.amount }}
{{ userpointchange.text }}
{{ userpointchange.date|date('d. m. Y H:i') }}

{% if userpointchange.dateExpire %}
        {{ userpointchange.dateExpire|date('d. m. Y H:i') }}
{% endif %}

Variant

Attributy objektu Variant

Název

Typ

Popis

id

int

Interní ID varianty

name

string

Název varianty

trackingId

string

ID používané ve feedech a měřících skriptech

active

bool

Aktivní

selected

bool

Je předvybraná?

availableUpsellGroups

AvailableUpsellGroup[]

Dostupné skupiny upsellu

enumValues

EnumValue[]

Hodnoty číselníku

images

Image[]

Obrázky varianty

item

Item

Položka

product

Product

Produkt

availableUpsells

Upsell[]

Dostupné položky pro upsell

url

Url

URL varianty (v detailu produktu se varianta předvybere)

legacyRel

string | null

Zastaralý výpis vlastností - čeká na migraci

image

Image | null

Obrázek položky

Příklady:

{{ variant.id }}
{{ variant.name }}
{{ variant.trackingId }}
{% if variant.active %} ... {% endif %}
{% if variant.selected %} ... {% endif %}

{% for availableUpsellGroup in variant.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {{ upsell.category.id }}
                {{ upsell.category.productCount }}
                {{ upsell.category.productInStockCount }}
                {{ upsell.category.totalStockQuantity }}
                {{ upsell.category.headline }}
                {{ upsell.category.menuName }}
                {{ upsell.category.name }}
                {% if upsell.category.flagErotic %} ... {% endif %}
                {% if upsell.category.flagImportant %} ... {% endif %}
                {% if upsell.category.noFollow %} ... {% endif %}
                {% for category in upsell.category.subcategories %}
                {% endfor %}
                {% for video in upsell.category.videos %}
                {% endfor %}
                {{ upsell.category.pathIds }}
                {{ upsell.category.pathNames }}
                {{ upsell.category.templateAttribute }}
                {% if upsell.category.subHeadline %}
                        {{ upsell.category.subHeadline }}
                {% endif %}
                {% if upsell.category.text %}
                        {{ upsell.category.text }}
                {% endif %}
                {% if upsell.category.parent %}
                {% endif %}
                {% if upsell.category.image %}
                {% endif %}
                {% if upsell.category.contentGrid %}
                        {{ upsell.category.contentGrid }}
                {% endif %}
                {{ upsell.price.vatRate }}
                {% if upsell.price.discountPercent %}
                        {{ upsell.price.discountPercent }}
                {% endif %}
                {% if upsell.price.discountValidTo %}
                        {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if upsell.price.beforeDiscount %}
                {% endif %}
                {% if upsell.price.discount %}
                {% endif %}
                {{ upsell.product.id }}
                {{ upsell.product.name }}
                {{ upsell.product.trackingId }}
                {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.active %} ... {% endif %}
                {% if upsell.product.compared %} ... {% endif %}
                {% if upsell.product.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.flagNew %} ... {% endif %}
                {% if upsell.product.flagPromo %} ... {% endif %}
                {% if upsell.product.flagSecondHand %} ... {% endif %}
                {% if upsell.product.flagSellout %} ... {% endif %}
                {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.attributes %}
                {% endfor %}
                {% for category in upsell.product.categories %}
                {% endfor %}
                {% for category in upsell.product.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.files %}
                {% endfor %}
                {% for image in upsell.product.images %}
                {% endfor %}
                {% for image in upsell.product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.images360 %}
                {% endfor %}
                {% for image in upsell.product.currentImages %}
                {% endfor %}
                {% for image in upsell.product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.otherImages %}
                {% endfor %}
                {% for label in upsell.product.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.enumValues %}
                {% endfor %}
                {% for product in upsell.product.packTemplateProducts %}
                {% endfor %}
                {% for upsell in upsell.product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.variants %}
                {% endfor %}
                {% for variant in upsell.product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.videos %}
                {% endfor %}
                {{ upsell.product.trackingIds }}
                {% if upsell.product.currentSubName %}
                        {{ upsell.product.currentSubName }}
                {% endif %}
                {% if upsell.product.nameSuffix %}
                        {{ upsell.product.nameSuffix }}
                {% endif %}
                {% if upsell.product.nameSupplier %}
                        {{ upsell.product.nameSupplier }}
                {% endif %}
                {% if upsell.product.text %}
                        {{ upsell.product.text }}
                {% endif %}
                {% if upsell.product.attribute %}
                {% endif %}
                {% if upsell.product.brand %}
                {% endif %}
                {% if upsell.product.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.image %}
                {% endif %}
                {% if upsell.product.successor %}
                {% endif %}
                {% if upsell.product.seo %}
                {% endif %}
                {% if upsell.product.supplier %}
                {% endif %}
                {% if upsell.product.unit %}
                {% endif %}
                {% if upsell.product.variant %}
                {% endif %}
                {% if upsell.product.warranty %}
                {% endif %}
                {% if upsell.product.contentGrid %}
                        {{ upsell.product.contentGrid }}
                {% endif %}
                {{ upsell.group.id }}
                {{ upsell.group.requiredNoteMaximumLength }}
                {{ upsell.group.name }}
                {% if upsell.group.requiredNote %} ... {% endif %}
                {% if upsell.group.requiredUpload %} ... {% endif %}
                {% if upsell.group.singleSelection %} ... {% endif %}
                {% if upsell.group.text %}
                        {{ upsell.group.text }}
                {% endif %}
                {% if upsell.group.uploadInput %}
                        {{ upsell.group.uploadInput }}
                {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                        {{ upsell.image.originalHeight }}
                        {{ upsell.image.originalWidth }}
                        {{ upsell.image.url }}
                        {% if upsell.image.alt %}
                                {{ upsell.image.alt }}
                        {% endif %}
                        {% if upsell.image.text %}
                                {{ upsell.image.text }}
                        {% endif %}
                {% endif %}
                {% if upsell.unit %}
                        {{ upsell.unit.name }}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}

{% for enumValue in variant.enumValues %}
        {{ enumValue.id }}
        {{ enumValue.name }}
        {{ enumValue.enum.id }}
        {{ enumValue.enum.name }}
        {% for enumValue in enumValue.enum.values %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% if enumValue.enum.text %}
                {{ enumValue.enum.text }}
        {% endif %}
        {% if enumValue.enum.meaning %}
                {{ enumValue.enum.meaning.code }}
        {% endif %}
        {% if enumValue.text %}
                {{ enumValue.text }}
        {% endif %}
        {% if enumValue.image %}
                {{ enumValue.image.originalHeight }}
                {{ enumValue.image.originalWidth }}
                {{ enumValue.image.url }}
                {% if enumValue.image.alt %}
                        {{ enumValue.image.alt }}
                {% endif %}
                {% if enumValue.image.text %}
                        {{ enumValue.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}

{% for image in variant.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ variant.item.id }}
{{ variant.item.name }}
{{ variant.item.trackingId }}
{% if variant.item.digital %} ... {% endif %}
{% if variant.item.sellable %} ... {% endif %}
{% if variant.item.service %} ... {% endif %}
{{ variant.item.availability.availableAmount }}
{{ variant.item.availability.availableAmountInShowroom }}
{{ variant.item.availability.availableAmountInStockroom }}
{{ variant.item.availability.availableAmountInStorageCenter }}
{{ variant.item.availability.hours }}
{{ variant.item.availability.totalAmount }}
{% if variant.item.availability.inShowroom %} ... {% endif %}
{% if variant.item.availability.inStock %} ... {% endif %}
{% if variant.item.availability.preorder %} ... {% endif %}
{% if variant.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in variant.item.availability.deliveryOptions %}
        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if deliveryOption.timeDelivered %}
                {{ deliveryOption.timeDelivered }}
        {% endif %}
{% endfor %}
{% if variant.item.availability.text %}
        {{ variant.item.availability.text }}
{% endif %}
{% if variant.item.availability.dateExpected %}
        {{ variant.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if variant.item.availability.deliveryOption %}
        {{ variant.item.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
        {{ variant.item.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
        {{ variant.item.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
        {% if variant.item.availability.deliveryOption.timeDelivered %}
                {{ variant.item.availability.deliveryOption.timeDelivered }}
        {% endif %}
{% endif %}
{% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ variant.item.product.id }}
{{ variant.item.product.name }}
{{ variant.item.product.trackingId }}
{{ variant.item.product.dateCreated|date('d. m. Y H:i') }}
{% if variant.item.product.active %} ... {% endif %}
{% if variant.item.product.compared %} ... {% endif %}
{% if variant.item.product.differentVariantPrices %} ... {% endif %}
{% if variant.item.product.flagNew %} ... {% endif %}
{% if variant.item.product.flagPromo %} ... {% endif %}
{% if variant.item.product.flagSecondHand %} ... {% endif %}
{% if variant.item.product.flagSellout %} ... {% endif %}
{% if variant.item.product.otherDiscountApplicable %} ... {% endif %}
{% if variant.item.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in variant.item.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
        {% endif %}
        {% if attributeInstance.image %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in variant.item.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ variant.item.product.category.id }}
{{ variant.item.product.category.productCount }}
{{ variant.item.product.category.productInStockCount }}
{{ variant.item.product.category.totalStockQuantity }}
{{ variant.item.product.category.headline }}
{{ variant.item.product.category.menuName }}
{{ variant.item.product.category.name }}
{% if variant.item.product.category.flagErotic %} ... {% endif %}
{% if variant.item.product.category.flagImportant %} ... {% endif %}
{% if variant.item.product.category.noFollow %} ... {% endif %}
{% for category in variant.item.product.category.subcategories %}
{% endfor %}
{% for video in variant.item.product.category.videos %}
{% endfor %}
{{ variant.item.product.category.pathIds }}
{{ variant.item.product.category.pathNames }}
{{ variant.item.product.category.templateAttribute }}
{% if variant.item.product.category.subHeadline %}
        {{ variant.item.product.category.subHeadline }}
{% endif %}
{% if variant.item.product.category.text %}
        {{ variant.item.product.category.text }}
{% endif %}
{% if variant.item.product.category.parent %}
{% endif %}
{% if variant.item.product.category.image %}
{% endif %}
{% if variant.item.product.category.contentGrid %}
        {{ variant.item.product.category.contentGrid }}
{% endif %}
{% for category in variant.item.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in variant.item.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
        {% endfor %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in variant.item.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in variant.item.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.item.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.item.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.item.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.item.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.item.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for label in variant.item.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
        {% endif %}
{% endfor %}
{% for productEnumValue in variant.item.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {% for variant in productEnumValue.variants %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
        {% endif %}
        {% if productEnumValue.variantImage %}
        {% endif %}
{% endfor %}
{% for product in variant.item.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
        {% endfor %}
        {% for category in product.categories %}
        {% endfor %}
        {% for category in product.otherCategories %}
        {% endfor %}
        {% for file in product.files %}
        {% endfor %}
        {% for image in product.images %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in product.images360 %}
        {% endfor %}
        {% for image in product.currentImages %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in product.otherImages %}
        {% endfor %}
        {% for label in product.labels %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
        {% endfor %}
        {% for upsell in product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in product.currentVariants %}
        {% endfor %}
        {% for variant in product.variants %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in product.videos %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
        {% endif %}
        {% if product.brand %}
        {% endif %}
        {% if product.imageForEnumValueId %}
        {% endif %}
        {% if product.image %}
        {% endif %}
        {% if product.successor %}
        {% endif %}
        {% if product.seo %}
        {% endif %}
        {% if product.supplier %}
        {% endif %}
        {% if product.unit %}
        {% endif %}
        {% if product.variant %}
        {% endif %}
        {% if product.warranty %}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ variant.item.product.rating.count }}
{% if variant.item.product.rating.voted %} ... {% endif %}
{% if variant.item.product.rating.average %}
        {{ variant.item.product.rating.average }}
{% endif %}
{% for upsell in variant.item.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ variant.item.product.url }}
{{ variant.item.product.url.absolute }}
{{ variant.item.product.url.path }}
{% for variantChoiceStep in variant.item.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
        {% endif %}
        {% if variantChoiceStep.info %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
        {% endif %}
{% endfor %}
{% for variant in variant.item.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in variant.item.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{% for variant in variant.item.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
        {% endfor %}
        {% for image in variant.images %}
        {% endfor %}
        {% for upsell in variant.availableUpsells %}
        {% endfor %}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
        {% endif %}
{% endfor %}
{{ variant.item.product.variantType.id }}
{{ variant.item.product.variantType.name }}
{% for video in variant.item.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ variant.item.product.trackingIds }}
{% if variant.item.product.currentSubName %}
        {{ variant.item.product.currentSubName }}
{% endif %}
{% if variant.item.product.nameSuffix %}
        {{ variant.item.product.nameSuffix }}
{% endif %}
{% if variant.item.product.nameSupplier %}
        {{ variant.item.product.nameSupplier }}
{% endif %}
{% if variant.item.product.text %}
        {{ variant.item.product.text }}
{% endif %}
{% if variant.item.product.attribute %}
        {{ variant.item.product.attribute.name }}
        {{ variant.item.product.attribute.valuesHtml }}
        {% for attributeValueInstance in variant.item.product.attribute.values %}
        {% endfor %}
        {% if variant.item.product.attribute.description %}
                {{ variant.item.product.attribute.description }}
        {% endif %}
        {% if variant.item.product.attribute.group %}
        {% endif %}
        {% if variant.item.product.attribute.image %}
        {% endif %}
{% endif %}
{% if variant.item.product.brand %}
        {{ variant.item.product.brand.id }}
        {{ variant.item.product.brand.name }}
        {% if variant.item.product.brand.flagImportant %} ... {% endif %}
        {% for category in variant.item.product.brand.categories %}
        {% endfor %}
        {% if variant.item.product.brand.code %}
                {{ variant.item.product.brand.code }}
        {% endif %}
        {% if variant.item.product.brand.web %}
                {{ variant.item.product.brand.web }}
        {% endif %}
        {% if variant.item.product.brand.text %}
                {{ variant.item.product.brand.text }}
        {% endif %}
        {% if variant.item.product.brand.image %}
        {% endif %}
        {% if variant.item.product.brand.seo %}
        {% endif %}
        {% if variant.item.product.brand.contentGrid %}
                {{ variant.item.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if variant.item.product.imageForEnumValueId %}
        {{ variant.item.product.imageForEnumValueId.originalHeight }}
        {{ variant.item.product.imageForEnumValueId.originalWidth }}
        {{ variant.item.product.imageForEnumValueId.url }}
        {% if variant.item.product.imageForEnumValueId.alt %}
                {{ variant.item.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if variant.item.product.imageForEnumValueId.text %}
                {{ variant.item.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if variant.item.product.image %}
        {{ variant.item.product.image.originalHeight }}
        {{ variant.item.product.image.originalWidth }}
        {{ variant.item.product.image.url }}
        {% if variant.item.product.image.alt %}
                {{ variant.item.product.image.alt }}
        {% endif %}
        {% if variant.item.product.image.text %}
                {{ variant.item.product.image.text }}
        {% endif %}
{% endif %}
{% if variant.item.product.successor %}
        {{ variant.item.product.successor.id }}
        {{ variant.item.product.successor.name }}
        {{ variant.item.product.successor.trackingId }}
        {{ variant.item.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if variant.item.product.successor.active %} ... {% endif %}
        {% if variant.item.product.successor.compared %} ... {% endif %}
        {% if variant.item.product.successor.differentVariantPrices %} ... {% endif %}
        {% if variant.item.product.successor.flagNew %} ... {% endif %}
        {% if variant.item.product.successor.flagPromo %} ... {% endif %}
        {% if variant.item.product.successor.flagSecondHand %} ... {% endif %}
        {% if variant.item.product.successor.flagSellout %} ... {% endif %}
        {% if variant.item.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if variant.item.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.item.product.successor.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in variant.item.product.successor.availableUpsellGroups %}
        {% endfor %}
        {% for category in variant.item.product.successor.categories %}
        {% endfor %}
        {% for category in variant.item.product.successor.otherCategories %}
        {% endfor %}
        {% for file in variant.item.product.successor.files %}
        {% endfor %}
        {% for image in variant.item.product.successor.images %}
        {% endfor %}
        {% for image in variant.item.product.successor.imagesWithEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.successor.images360 %}
        {% endfor %}
        {% for image in variant.item.product.successor.currentImages %}
        {% endfor %}
        {% for image in variant.item.product.successor.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in variant.item.product.successor.otherImages %}
        {% endfor %}
        {% for label in variant.item.product.successor.labels %}
        {% endfor %}
        {% for productEnumValue in variant.item.product.successor.enumValues %}
        {% endfor %}
        {% for product in variant.item.product.successor.packTemplateProducts %}
        {% endfor %}
        {% for upsell in variant.item.product.successor.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in variant.item.product.successor.variantChoiceSteps %}
        {% endfor %}
        {% for variant in variant.item.product.successor.currentVariants %}
        {% endfor %}
        {% for variant in variant.item.product.successor.variants %}
        {% endfor %}
        {% for variant in variant.item.product.successor.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in variant.item.product.successor.videos %}
        {% endfor %}
        {{ variant.item.product.successor.trackingIds }}
        {% if variant.item.product.successor.currentSubName %}
                {{ variant.item.product.successor.currentSubName }}
        {% endif %}
        {% if variant.item.product.successor.nameSuffix %}
                {{ variant.item.product.successor.nameSuffix }}
        {% endif %}
        {% if variant.item.product.successor.nameSupplier %}
                {{ variant.item.product.successor.nameSupplier }}
        {% endif %}
        {% if variant.item.product.successor.text %}
                {{ variant.item.product.successor.text }}
        {% endif %}
        {% if variant.item.product.successor.attribute %}
        {% endif %}
        {% if variant.item.product.successor.brand %}
        {% endif %}
        {% if variant.item.product.successor.imageForEnumValueId %}
        {% endif %}
        {% if variant.item.product.successor.image %}
        {% endif %}
        {% if variant.item.product.successor.seo %}
        {% endif %}
        {% if variant.item.product.successor.supplier %}
        {% endif %}
        {% if variant.item.product.successor.unit %}
        {% endif %}
        {% if variant.item.product.successor.variant %}
        {% endif %}
        {% if variant.item.product.successor.warranty %}
        {% endif %}
        {% if variant.item.product.successor.contentGrid %}
                {{ variant.item.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if variant.item.product.seo %}
        {% if variant.item.product.seo.description %}
                {{ variant.item.product.seo.description }}
        {% endif %}
        {% if variant.item.product.seo.keywords %}
                {{ variant.item.product.seo.keywords }}
        {% endif %}
        {% if variant.item.product.seo.title %}
                {{ variant.item.product.seo.title }}
        {% endif %}
{% endif %}
{% if variant.item.product.supplier %}
        {{ variant.item.product.supplier.id }}
        {{ variant.item.product.supplier.name }}
{% endif %}
{% if variant.item.product.unit %}
        {{ variant.item.product.unit.name }}
{% endif %}
{% if variant.item.product.variant %}
        {{ variant.item.product.variant.id }}
        {{ variant.item.product.variant.name }}
        {{ variant.item.product.variant.trackingId }}
        {% if variant.item.product.variant.active %} ... {% endif %}
        {% if variant.item.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.product.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.item.product.variant.enumValues %}
        {% endfor %}
        {% for image in variant.item.product.variant.images %}
        {% endfor %}
        {% for upsell in variant.item.product.variant.availableUpsells %}
        {% endfor %}
        {% if variant.item.product.variant.legacyRel %}
                {{ variant.item.product.variant.legacyRel }}
        {% endif %}
        {% if variant.item.product.variant.image %}
        {% endif %}
{% endif %}
{% if variant.item.product.warranty %}
        {{ variant.item.product.warranty.months }}
{% endif %}
{% if variant.item.product.contentGrid %}
        {{ variant.item.product.contentGrid }}
{% endif %}
{% for upsell in variant.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in upsell.product.categories %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
        {% endfor %}
        {% for file in upsell.product.files %}
        {% endfor %}
        {% for image in upsell.product.images %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
        {% endfor %}
        {% for label in upsell.product.labels %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
        {% endfor %}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in upsell.product.videos %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
        {% endif %}
        {% if upsell.product.brand %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
        {% endif %}
        {% if upsell.product.image %}
        {% endif %}
        {% if upsell.product.successor %}
        {% endif %}
        {% if upsell.product.seo %}
        {% endif %}
        {% if upsell.product.supplier %}
        {% endif %}
        {% if upsell.product.unit %}
        {% endif %}
        {% if upsell.product.variant %}
        {% endif %}
        {% if upsell.product.warranty %}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ variant.item.trackingIds }}
{{ variant.item.storageLocations }}
{% if variant.item.packageHeight %}
        {{ variant.item.packageHeight }}
{% endif %}
{% if variant.item.packageLength %}
        {{ variant.item.packageLength }}
{% endif %}
{% if variant.item.packageWeight %}
        {{ variant.item.packageWeight }}
{% endif %}
{% if variant.item.packageWidth %}
        {{ variant.item.packageWidth }}
{% endif %}
{% if variant.item.code %}
        {{ variant.item.code }}
{% endif %}
{% if variant.item.bundle %}
        {% if variant.item.bundle.multiPack %} ... {% endif %}
        {% if variant.item.bundle.price %}
                {{ variant.item.bundle.price.vatRate }}
                {% if variant.item.bundle.price.discountPercent %}
                        {{ variant.item.bundle.price.discountPercent }}
                {% endif %}
                {% if variant.item.bundle.price.discountValidTo %}
                        {{ variant.item.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variant.item.bundle.price.beforeDiscount %}
                {% endif %}
                {% if variant.item.bundle.price.discount %}
                {% endif %}
        {% endif %}
{% endif %}
{% if variant.item.cheapestDelivery %}
        {{ variant.item.cheapestDelivery.inputId }}
        {{ variant.item.cheapestDelivery.name }}
        {{ variant.item.cheapestDelivery.vatRate }}
        {% if variant.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if variant.item.cheapestDelivery.currier %} ... {% endif %}
        {% if variant.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if variant.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if variant.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if variant.item.cheapestDelivery.free %} ... {% endif %}
        {% if variant.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if variant.item.cheapestDelivery.selected %} ... {% endif %}
        {{ variant.item.cheapestDelivery.price.vatRate }}
        {% if variant.item.cheapestDelivery.price.discountPercent %}
                {{ variant.item.cheapestDelivery.price.discountPercent }}
        {% endif %}
        {% if variant.item.cheapestDelivery.price.discountValidTo %}
                {{ variant.item.cheapestDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.cheapestDelivery.price.beforeDiscount %}
        {% endif %}
        {% if variant.item.cheapestDelivery.price.discount %}
        {% endif %}
        {% if variant.item.cheapestDelivery.text %}
                {{ variant.item.cheapestDelivery.text }}
        {% endif %}
        {% if variant.item.cheapestDelivery.branch %}
                {{ variant.item.cheapestDelivery.branch.code }}
                {{ variant.item.cheapestDelivery.branch.name }}
        {% endif %}
        {% if variant.item.cheapestDelivery.carrier %}
                {{ variant.item.cheapestDelivery.carrier.code }}
                {{ variant.item.cheapestDelivery.carrier.name }}
        {% endif %}
        {% if variant.item.cheapestDelivery.deliveryDate %}
                {{ variant.item.cheapestDelivery.deliveryDate.dateDelivered|date('d. m. Y H:i') }}
                {{ variant.item.cheapestDelivery.deliveryDate.dateSent|date('d. m. Y H:i') }}
                {{ variant.item.cheapestDelivery.deliveryDate.orderDeadline|date('d. m. Y H:i') }}
                {% if variant.item.cheapestDelivery.deliveryDate.timeDelivered %}
                        {{ variant.item.cheapestDelivery.deliveryDate.timeDelivered }}
                {% endif %}
        {% endif %}
        {% if variant.item.cheapestDelivery.packageType %}
                {{ variant.item.cheapestDelivery.packageType.code }}
        {% endif %}
        {% if variant.item.cheapestDelivery.image %}
                {{ variant.item.cheapestDelivery.image.originalHeight }}
                {{ variant.item.cheapestDelivery.image.originalWidth }}
                {{ variant.item.cheapestDelivery.image.url }}
                {% if variant.item.cheapestDelivery.image.alt %}
                        {{ variant.item.cheapestDelivery.image.alt }}
                {% endif %}
                {% if variant.item.cheapestDelivery.image.text %}
                        {{ variant.item.cheapestDelivery.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if variant.item.freeDelivery %}
        {{ variant.item.freeDelivery.name }}
        {{ variant.item.freeDelivery.vatRate }}
        {{ variant.item.freeDelivery.payment.code }}
        {{ variant.item.freeDelivery.payment.inputId }}
        {{ variant.item.freeDelivery.payment.name }}
        {{ variant.item.freeDelivery.payment.url }}
        {{ variant.item.freeDelivery.payment.vatRate }}
        {% if variant.item.freeDelivery.payment.free %} ... {% endif %}
        {% if variant.item.freeDelivery.payment.inAdvance %} ... {% endif %}
        {% if variant.item.freeDelivery.payment.selected %} ... {% endif %}
        {% if variant.item.freeDelivery.payment.vs %}
                {{ variant.item.freeDelivery.payment.vs }}
        {% endif %}
        {% if variant.item.freeDelivery.payment.qRCodeHTML %}
                {{ variant.item.freeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if variant.item.freeDelivery.payment.text %}
                {{ variant.item.freeDelivery.payment.text }}
        {% endif %}
        {% if variant.item.freeDelivery.payment.bankAccount %}
        {% endif %}
        {% if variant.item.freeDelivery.payment.image %}
        {% endif %}
        {{ variant.item.freeDelivery.transport.inputId }}
        {{ variant.item.freeDelivery.transport.name }}
        {{ variant.item.freeDelivery.transport.vatRate }}
        {% if variant.item.freeDelivery.transport.branchRequired %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.currier %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.free %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.pickup %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.selected %} ... {% endif %}
        {% if variant.item.freeDelivery.transport.text %}
                {{ variant.item.freeDelivery.transport.text }}
        {% endif %}
        {% if variant.item.freeDelivery.transport.branch %}
        {% endif %}
        {% if variant.item.freeDelivery.transport.carrier %}
        {% endif %}
        {% if variant.item.freeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if variant.item.freeDelivery.transport.packageType %}
        {% endif %}
        {% if variant.item.freeDelivery.transport.image %}
        {% endif %}
        {{ variant.item.freeDelivery.price.vatRate }}
        {% if variant.item.freeDelivery.price.discountPercent %}
                {{ variant.item.freeDelivery.price.discountPercent }}
        {% endif %}
        {% if variant.item.freeDelivery.price.discountValidTo %}
                {{ variant.item.freeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.freeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if variant.item.freeDelivery.price.discount %}
        {% endif %}
        {% if variant.item.freeDelivery.id %}
                {{ variant.item.freeDelivery.id }}
        {% endif %}
        {% if variant.item.freeDelivery.freeLimit %}
                {{ variant.item.freeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if variant.item.closestFreeDelivery %}
        {{ variant.item.closestFreeDelivery.name }}
        {{ variant.item.closestFreeDelivery.vatRate }}
        {{ variant.item.closestFreeDelivery.payment.code }}
        {{ variant.item.closestFreeDelivery.payment.inputId }}
        {{ variant.item.closestFreeDelivery.payment.name }}
        {{ variant.item.closestFreeDelivery.payment.url }}
        {{ variant.item.closestFreeDelivery.payment.vatRate }}
        {% if variant.item.closestFreeDelivery.payment.free %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.payment.inAdvance %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.payment.selected %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.payment.vs %}
                {{ variant.item.closestFreeDelivery.payment.vs }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.payment.qRCodeHTML %}
                {{ variant.item.closestFreeDelivery.payment.qRCodeHTML }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.payment.text %}
                {{ variant.item.closestFreeDelivery.payment.text }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.payment.bankAccount %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.payment.image %}
        {% endif %}
        {{ variant.item.closestFreeDelivery.transport.inputId }}
        {{ variant.item.closestFreeDelivery.transport.name }}
        {{ variant.item.closestFreeDelivery.transport.vatRate }}
        {% if variant.item.closestFreeDelivery.transport.branchRequired %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.currier %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.dateGuaranteed %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.deliveryAddressRequired %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.deliveryToAddress %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.free %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.pickup %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.selected %} ... {% endif %}
        {% if variant.item.closestFreeDelivery.transport.text %}
                {{ variant.item.closestFreeDelivery.transport.text }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.transport.branch %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.transport.carrier %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.transport.deliveryDate %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.transport.packageType %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.transport.image %}
        {% endif %}
        {{ variant.item.closestFreeDelivery.price.vatRate }}
        {% if variant.item.closestFreeDelivery.price.discountPercent %}
                {{ variant.item.closestFreeDelivery.price.discountPercent }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.price.discountValidTo %}
                {{ variant.item.closestFreeDelivery.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.price.beforeDiscount %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.price.discount %}
        {% endif %}
        {% if variant.item.closestFreeDelivery.id %}
                {{ variant.item.closestFreeDelivery.id }}
        {% endif %}
        {% if variant.item.closestFreeDelivery.freeLimit %}
                {{ variant.item.closestFreeDelivery.freeLimit.percent }}
        {% endif %}
{% endif %}
{% if variant.item.packageDimensions %}
        {{ variant.item.packageDimensions }}
        {{ variant.item.packageDimensions.height }}
        {{ variant.item.packageDimensions.length }}
        {{ variant.item.packageDimensions.width }}
        {{ variant.item.packageDimensions.unit }}
{% endif %}
{% if variant.item.image %}
        {{ variant.item.image.originalHeight }}
        {{ variant.item.image.originalWidth }}
        {{ variant.item.image.url }}
        {% if variant.item.image.alt %}
                {{ variant.item.image.alt }}
        {% endif %}
        {% if variant.item.image.text %}
                {{ variant.item.image.text }}
        {% endif %}
{% endif %}
{% if variant.item.price %}
        {{ variant.item.price.vatRate }}
        {{ variant.item.price.current.currency }}
        {{ variant.item.price.current.formatted }}
        {{ variant.item.price.current.value }}
        {% if variant.item.price.discountPercent %}
                {{ variant.item.price.discountPercent }}
        {% endif %}
        {% if variant.item.price.discountValidTo %}
                {{ variant.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.item.price.beforeDiscount %}
                {{ variant.item.price.beforeDiscount.currency }}
                {{ variant.item.price.beforeDiscount.formatted }}
                {{ variant.item.price.beforeDiscount.value }}
        {% endif %}
        {% if variant.item.price.discount %}
                {{ variant.item.price.discount.currency }}
                {{ variant.item.price.discount.formatted }}
                {{ variant.item.price.discount.value }}
        {% endif %}
{% endif %}
{% if variant.item.url %}
        {{ variant.item.url }}
        {{ variant.item.url.absolute }}
        {{ variant.item.url.path }}
{% endif %}
{% if variant.item.variant %}
        {{ variant.item.variant.id }}
        {{ variant.item.variant.name }}
        {{ variant.item.variant.trackingId }}
        {% if variant.item.variant.active %} ... {% endif %}
        {% if variant.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.item.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.item.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.variant.product.id }}
        {{ variant.item.variant.product.name }}
        {{ variant.item.variant.product.trackingId }}
        {{ variant.item.variant.product.dateCreated|date('d. m. Y H:i') }}
        {% if variant.item.variant.product.active %} ... {% endif %}
        {% if variant.item.variant.product.compared %} ... {% endif %}
        {% if variant.item.variant.product.differentVariantPrices %} ... {% endif %}
        {% if variant.item.variant.product.flagNew %} ... {% endif %}
        {% if variant.item.variant.product.flagPromo %} ... {% endif %}
        {% if variant.item.variant.product.flagSecondHand %} ... {% endif %}
        {% if variant.item.variant.product.flagSellout %} ... {% endif %}
        {% if variant.item.variant.product.otherDiscountApplicable %} ... {% endif %}
        {% if variant.item.variant.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.item.variant.product.attributes %}
        {% endfor %}
        {% for availableUpsellGroup in variant.item.variant.product.availableUpsellGroups %}
        {% endfor %}
        {% for category in variant.item.variant.product.categories %}
        {% endfor %}
        {% for category in variant.item.variant.product.otherCategories %}
        {% endfor %}
        {% for file in variant.item.variant.product.files %}
        {% endfor %}
        {% for image in variant.item.variant.product.images %}
        {% endfor %}
        {% for image in variant.item.variant.product.imagesWithEnumValue %}
        {% endfor %}
        {% for image in variant.item.variant.product.images360 %}
        {% endfor %}
        {% for image in variant.item.variant.product.currentImages %}
        {% endfor %}
        {% for image in variant.item.variant.product.imagesWithoutEnumValue %}
        {% endfor %}
        {% for image in variant.item.variant.product.otherImages %}
        {% endfor %}
        {% for label in variant.item.variant.product.labels %}
        {% endfor %}
        {% for productEnumValue in variant.item.variant.product.enumValues %}
        {% endfor %}
        {% for product in variant.item.variant.product.packTemplateProducts %}
        {% endfor %}
        {% for upsell in variant.item.variant.product.availableUpsells %}
        {% endfor %}
        {% for variantChoiceStep in variant.item.variant.product.variantChoiceSteps %}
        {% endfor %}
        {% for variant in variant.item.variant.product.currentVariants %}
        {% endfor %}
        {% for variant in variant.item.variant.product.variants %}
        {% endfor %}
        {% for variant in variant.item.variant.product.variantsWithEnumValueIds %}
        {% endfor %}
        {% for video in variant.item.variant.product.videos %}
        {% endfor %}
        {{ variant.item.variant.product.trackingIds }}
        {% if variant.item.variant.product.currentSubName %}
                {{ variant.item.variant.product.currentSubName }}
        {% endif %}
        {% if variant.item.variant.product.nameSuffix %}
                {{ variant.item.variant.product.nameSuffix }}
        {% endif %}
        {% if variant.item.variant.product.nameSupplier %}
                {{ variant.item.variant.product.nameSupplier }}
        {% endif %}
        {% if variant.item.variant.product.text %}
                {{ variant.item.variant.product.text }}
        {% endif %}
        {% if variant.item.variant.product.attribute %}
        {% endif %}
        {% if variant.item.variant.product.brand %}
        {% endif %}
        {% if variant.item.variant.product.imageForEnumValueId %}
        {% endif %}
        {% if variant.item.variant.product.image %}
        {% endif %}
        {% if variant.item.variant.product.successor %}
        {% endif %}
        {% if variant.item.variant.product.seo %}
        {% endif %}
        {% if variant.item.variant.product.supplier %}
        {% endif %}
        {% if variant.item.variant.product.unit %}
        {% endif %}
        {% if variant.item.variant.product.warranty %}
        {% endif %}
        {% if variant.item.variant.product.contentGrid %}
                {{ variant.item.variant.product.contentGrid }}
        {% endif %}
        {% for upsell in variant.item.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.item.variant.url }}
        {{ variant.item.variant.url.absolute }}
        {{ variant.item.variant.url.path }}
        {% if variant.item.variant.legacyRel %}
                {{ variant.item.variant.legacyRel }}
        {% endif %}
        {% if variant.item.variant.image %}
                {{ variant.item.variant.image.originalHeight }}
                {{ variant.item.variant.image.originalWidth }}
                {{ variant.item.variant.image.url }}
                {% if variant.item.variant.image.alt %}
                        {{ variant.item.variant.image.alt }}
                {% endif %}
                {% if variant.item.variant.image.text %}
                        {{ variant.item.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{{ variant.product.id }}
{{ variant.product.name }}
{{ variant.product.trackingId }}
{{ variant.product.dateCreated|date('d. m. Y H:i') }}
{% if variant.product.active %} ... {% endif %}
{% if variant.product.compared %} ... {% endif %}
{% if variant.product.differentVariantPrices %} ... {% endif %}
{% if variant.product.flagNew %} ... {% endif %}
{% if variant.product.flagPromo %} ... {% endif %}
{% if variant.product.flagSecondHand %} ... {% endif %}
{% if variant.product.flagSellout %} ... {% endif %}
{% if variant.product.otherDiscountApplicable %} ... {% endif %}
{% if variant.product.soldSeparately %} ... {% endif %}
{% for attributeInstance in variant.product.attributes %}
        {{ attributeInstance.name }}
        {{ attributeInstance.valuesHtml }}
        {% for attributeValueInstance in attributeInstance.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if attributeInstance.description %}
                {{ attributeInstance.description }}
        {% endif %}
        {% if attributeInstance.group %}
                {{ attributeInstance.group.id }}
        {% endif %}
        {% if attributeInstance.image %}
                {{ attributeInstance.image.originalHeight }}
                {{ attributeInstance.image.originalWidth }}
                {{ attributeInstance.image.url }}
                {% if attributeInstance.image.alt %}
                        {{ attributeInstance.image.alt }}
                {% endif %}
                {% if attributeInstance.image.text %}
                        {{ attributeInstance.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for availableUpsellGroup in variant.product.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{{ variant.product.category.id }}
{{ variant.product.category.productCount }}
{{ variant.product.category.productInStockCount }}
{{ variant.product.category.totalStockQuantity }}
{{ variant.product.category.headline }}
{{ variant.product.category.menuName }}
{{ variant.product.category.name }}
{% if variant.product.category.flagErotic %} ... {% endif %}
{% if variant.product.category.flagImportant %} ... {% endif %}
{% if variant.product.category.noFollow %} ... {% endif %}
{% for category in variant.product.category.subcategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for video in category.videos %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
        {% endif %}
        {% if category.image %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{{ variant.product.category.url }}
{{ variant.product.category.url.absolute }}
{{ variant.product.category.url.path }}
{{ variant.product.category.variantType.id }}
{{ variant.product.category.variantType.name }}
{% for video in variant.product.category.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
        {% endif %}
{% endfor %}
{{ variant.product.category.pathIds }}
{{ variant.product.category.pathNames }}
{{ variant.product.category.templateAttribute }}
{% if variant.product.category.subHeadline %}
        {{ variant.product.category.subHeadline }}
{% endif %}
{% if variant.product.category.text %}
        {{ variant.product.category.text }}
{% endif %}
{% if variant.product.category.parent %}
        {{ variant.product.category.parent.id }}
        {{ variant.product.category.parent.productCount }}
        {{ variant.product.category.parent.productInStockCount }}
        {{ variant.product.category.parent.totalStockQuantity }}
        {{ variant.product.category.parent.headline }}
        {{ variant.product.category.parent.menuName }}
        {{ variant.product.category.parent.name }}
        {% if variant.product.category.parent.flagErotic %} ... {% endif %}
        {% if variant.product.category.parent.flagImportant %} ... {% endif %}
        {% if variant.product.category.parent.noFollow %} ... {% endif %}
        {% for category in variant.product.category.parent.subcategories %}
        {% endfor %}
        {% for video in variant.product.category.parent.videos %}
        {% endfor %}
        {{ variant.product.category.parent.pathIds }}
        {{ variant.product.category.parent.pathNames }}
        {{ variant.product.category.parent.templateAttribute }}
        {% if variant.product.category.parent.subHeadline %}
                {{ variant.product.category.parent.subHeadline }}
        {% endif %}
        {% if variant.product.category.parent.text %}
                {{ variant.product.category.parent.text }}
        {% endif %}
        {% if variant.product.category.parent.image %}
        {% endif %}
        {% if variant.product.category.parent.contentGrid %}
                {{ variant.product.category.parent.contentGrid }}
        {% endif %}
{% endif %}
{% if variant.product.category.image %}
        {{ variant.product.category.image.originalHeight }}
        {{ variant.product.category.image.originalWidth }}
        {{ variant.product.category.image.url }}
        {% if variant.product.category.image.alt %}
                {{ variant.product.category.image.alt }}
        {% endif %}
        {% if variant.product.category.image.text %}
                {{ variant.product.category.image.text }}
        {% endif %}
{% endif %}
{% if variant.product.category.contentGrid %}
        {{ variant.product.category.contentGrid }}
{% endif %}
{% for category in variant.product.categories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for category in variant.product.otherCategories %}
        {{ category.id }}
        {{ category.productCount }}
        {{ category.productInStockCount }}
        {{ category.totalStockQuantity }}
        {{ category.headline }}
        {{ category.menuName }}
        {{ category.name }}
        {% if category.flagErotic %} ... {% endif %}
        {% if category.flagImportant %} ... {% endif %}
        {% if category.noFollow %} ... {% endif %}
        {% for category in category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ category.url }}
        {{ category.url.absolute }}
        {{ category.url.path }}
        {{ category.variantType.id }}
        {{ category.variantType.name }}
        {% for video in category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ category.pathIds }}
        {{ category.pathNames }}
        {{ category.templateAttribute }}
        {% if category.subHeadline %}
                {{ category.subHeadline }}
        {% endif %}
        {% if category.text %}
                {{ category.text }}
        {% endif %}
        {% if category.parent %}
                {{ category.parent.id }}
                {{ category.parent.productCount }}
                {{ category.parent.productInStockCount }}
                {{ category.parent.totalStockQuantity }}
                {{ category.parent.headline }}
                {{ category.parent.menuName }}
                {{ category.parent.name }}
                {% if category.parent.flagErotic %} ... {% endif %}
                {% if category.parent.flagImportant %} ... {% endif %}
                {% if category.parent.noFollow %} ... {% endif %}
                {% for category in category.parent.subcategories %}
                {% endfor %}
                {% for video in category.parent.videos %}
                {% endfor %}
                {{ category.parent.pathIds }}
                {{ category.parent.pathNames }}
                {{ category.parent.templateAttribute }}
                {% if category.parent.subHeadline %}
                        {{ category.parent.subHeadline }}
                {% endif %}
                {% if category.parent.text %}
                        {{ category.parent.text }}
                {% endif %}
                {% if category.parent.image %}
                {% endif %}
                {% if category.parent.contentGrid %}
                        {{ category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if category.image %}
                {{ category.image.originalHeight }}
                {{ category.image.originalWidth }}
                {{ category.image.url }}
                {% if category.image.alt %}
                        {{ category.image.alt }}
                {% endif %}
                {% if category.image.text %}
                        {{ category.image.text }}
                {% endif %}
        {% endif %}
        {% if category.contentGrid %}
                {{ category.contentGrid }}
        {% endif %}
{% endfor %}
{% for file in variant.product.files %}
        {{ file.bytes }}
        {{ file.url }}
        {% if file.usage.archive %} ... {% endif %}
        {% if file.usage.graphic %} ... {% endif %}
        {% if file.usage.manual %} ... {% endif %}
        {% if file.usage.other %} ... {% endif %}
        {% if file.usage.sound %} ... {% endif %}
        {% if file.usage.specification %} ... {% endif %}
        {% if file.mime %}
                {{ file.mime }}
        {% endif %}
        {% if file.name %}
                {{ file.name }}
        {% endif %}
{% endfor %}
{% for image in variant.product.images %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.product.imagesWithEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.product.images360 %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.product.currentImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.product.imagesWithoutEnumValue %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{% for image in variant.product.otherImages %}
        {{ image.originalHeight }}
        {{ image.originalWidth }}
        {{ image.url }}
        {% if image.alt %}
                {{ image.alt }}
        {% endif %}
        {% if image.text %}
                {{ image.text }}
        {% endif %}
{% endfor %}
{{ variant.product.item.id }}
{{ variant.product.item.name }}
{{ variant.product.item.trackingId }}
{% if variant.product.item.digital %} ... {% endif %}
{% if variant.product.item.sellable %} ... {% endif %}
{% if variant.product.item.service %} ... {% endif %}
{{ variant.product.item.availability.availableAmount }}
{{ variant.product.item.availability.availableAmountInShowroom }}
{{ variant.product.item.availability.availableAmountInStockroom }}
{{ variant.product.item.availability.availableAmountInStorageCenter }}
{{ variant.product.item.availability.hours }}
{{ variant.product.item.availability.totalAmount }}
{% if variant.product.item.availability.inShowroom %} ... {% endif %}
{% if variant.product.item.availability.inStock %} ... {% endif %}
{% if variant.product.item.availability.preorder %} ... {% endif %}
{% if variant.product.item.availability.watchdogSupported %} ... {% endif %}
{% for deliveryOption in variant.product.item.availability.deliveryOptions %}
{% endfor %}
{% if variant.product.item.availability.text %}
        {{ variant.product.item.availability.text }}
{% endif %}
{% if variant.product.item.availability.dateExpected %}
        {{ variant.product.item.availability.dateExpected|date('d. m. Y H:i') }}
{% endif %}
{% if variant.product.item.availability.deliveryOption %}
{% endif %}
{% for availableUpsellGroup in variant.product.item.availableUpsellGroups %}
        {{ availableUpsellGroup.id }}
        {{ availableUpsellGroup.name }}
        {% if availableUpsellGroup.singleSelection %} ... {% endif %}
        {% for upsell in availableUpsellGroup.upsells %}
        {% endfor %}
        {% if availableUpsellGroup.code %}
                {{ availableUpsellGroup.code }}
        {% endif %}
{% endfor %}
{% for upsell in variant.product.item.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
        {% endif %}
        {% if upsell.unit %}
        {% endif %}
{% endfor %}
{{ variant.product.item.trackingIds }}
{{ variant.product.item.storageLocations }}
{% if variant.product.item.packageHeight %}
        {{ variant.product.item.packageHeight }}
{% endif %}
{% if variant.product.item.packageLength %}
        {{ variant.product.item.packageLength }}
{% endif %}
{% if variant.product.item.packageWeight %}
        {{ variant.product.item.packageWeight }}
{% endif %}
{% if variant.product.item.packageWidth %}
        {{ variant.product.item.packageWidth }}
{% endif %}
{% if variant.product.item.code %}
        {{ variant.product.item.code }}
{% endif %}
{% if variant.product.item.bundle %}
        {% if variant.product.item.bundle.multiPack %} ... {% endif %}
        {% if variant.product.item.bundle.price %}
        {% endif %}
{% endif %}
{% if variant.product.item.cheapestDelivery %}
        {{ variant.product.item.cheapestDelivery.inputId }}
        {{ variant.product.item.cheapestDelivery.name }}
        {{ variant.product.item.cheapestDelivery.vatRate }}
        {% if variant.product.item.cheapestDelivery.branchRequired %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.currier %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.dateGuaranteed %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.deliveryAddressRequired %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.deliveryToAddress %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.free %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.pickup %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.selected %} ... {% endif %}
        {% if variant.product.item.cheapestDelivery.text %}
                {{ variant.product.item.cheapestDelivery.text }}
        {% endif %}
        {% if variant.product.item.cheapestDelivery.branch %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery.carrier %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery.deliveryDate %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery.packageType %}
        {% endif %}
        {% if variant.product.item.cheapestDelivery.image %}
        {% endif %}
{% endif %}
{% if variant.product.item.freeDelivery %}
        {{ variant.product.item.freeDelivery.name }}
        {{ variant.product.item.freeDelivery.vatRate }}
        {% if variant.product.item.freeDelivery.id %}
                {{ variant.product.item.freeDelivery.id }}
        {% endif %}
        {% if variant.product.item.freeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if variant.product.item.closestFreeDelivery %}
        {{ variant.product.item.closestFreeDelivery.name }}
        {{ variant.product.item.closestFreeDelivery.vatRate }}
        {% if variant.product.item.closestFreeDelivery.id %}
                {{ variant.product.item.closestFreeDelivery.id }}
        {% endif %}
        {% if variant.product.item.closestFreeDelivery.freeLimit %}
        {% endif %}
{% endif %}
{% if variant.product.item.packageDimensions %}
        {{ variant.product.item.packageDimensions }}
        {{ variant.product.item.packageDimensions.height }}
        {{ variant.product.item.packageDimensions.length }}
        {{ variant.product.item.packageDimensions.width }}
        {{ variant.product.item.packageDimensions.unit }}
{% endif %}
{% if variant.product.item.image %}
        {{ variant.product.item.image.originalHeight }}
        {{ variant.product.item.image.originalWidth }}
        {{ variant.product.item.image.url }}
        {% if variant.product.item.image.alt %}
                {{ variant.product.item.image.alt }}
        {% endif %}
        {% if variant.product.item.image.text %}
                {{ variant.product.item.image.text }}
        {% endif %}
{% endif %}
{% if variant.product.item.price %}
        {{ variant.product.item.price.vatRate }}
        {% if variant.product.item.price.discountPercent %}
                {{ variant.product.item.price.discountPercent }}
        {% endif %}
        {% if variant.product.item.price.discountValidTo %}
                {{ variant.product.item.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if variant.product.item.price.beforeDiscount %}
        {% endif %}
        {% if variant.product.item.price.discount %}
        {% endif %}
{% endif %}
{% if variant.product.item.url %}
        {{ variant.product.item.url }}
        {{ variant.product.item.url.absolute }}
        {{ variant.product.item.url.path }}
{% endif %}
{% if variant.product.item.variant %}
        {{ variant.product.item.variant.id }}
        {{ variant.product.item.variant.name }}
        {{ variant.product.item.variant.trackingId }}
        {% if variant.product.item.variant.active %} ... {% endif %}
        {% if variant.product.item.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.item.variant.availableUpsellGroups %}
        {% endfor %}
        {% for enumValue in variant.product.item.variant.enumValues %}
        {% endfor %}
        {% for image in variant.product.item.variant.images %}
        {% endfor %}
        {% for upsell in variant.product.item.variant.availableUpsells %}
        {% endfor %}
        {% if variant.product.item.variant.legacyRel %}
                {{ variant.product.item.variant.legacyRel }}
        {% endif %}
        {% if variant.product.item.variant.image %}
        {% endif %}
{% endif %}
{% for label in variant.product.labels %}
        {{ label.id }}
        {{ label.name }}
        {% if label.code %}
                {{ label.code }}
        {% endif %}
        {% if label.colorCode %}
                {{ label.colorCode }}
        {% endif %}
        {% if label.image %}
                {{ label.image.originalHeight }}
                {{ label.image.originalWidth }}
                {{ label.image.url }}
                {% if label.image.alt %}
                        {{ label.image.alt }}
                {% endif %}
                {% if label.image.text %}
                        {{ label.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for productEnumValue in variant.product.enumValues %}
        {{ productEnumValue.id }}
        {{ productEnumValue.name }}
        {% if productEnumValue.selected %} ... {% endif %}
        {{ productEnumValue.enum.id }}
        {{ productEnumValue.enum.name }}
        {% for enumValue in productEnumValue.enum.values %}
        {% endfor %}
        {% if productEnumValue.enum.text %}
                {{ productEnumValue.enum.text }}
        {% endif %}
        {% if productEnumValue.enum.meaning %}
        {% endif %}
        {{ productEnumValue.url }}
        {{ productEnumValue.url.absolute }}
        {{ productEnumValue.url.path }}
        {% for variant in productEnumValue.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% if productEnumValue.text %}
                {{ productEnumValue.text }}
        {% endif %}
        {% if productEnumValue.image %}
                {{ productEnumValue.image.originalHeight }}
                {{ productEnumValue.image.originalWidth }}
                {{ productEnumValue.image.url }}
                {% if productEnumValue.image.alt %}
                        {{ productEnumValue.image.alt }}
                {% endif %}
                {% if productEnumValue.image.text %}
                        {{ productEnumValue.image.text }}
                {% endif %}
        {% endif %}
        {% if productEnumValue.variantImage %}
                {{ productEnumValue.variantImage.originalHeight }}
                {{ productEnumValue.variantImage.originalWidth }}
                {{ productEnumValue.variantImage.url }}
                {% if productEnumValue.variantImage.alt %}
                        {{ productEnumValue.variantImage.alt }}
                {% endif %}
                {% if productEnumValue.variantImage.text %}
                        {{ productEnumValue.variantImage.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for product in variant.product.packTemplateProducts %}
        {{ product.id }}
        {{ product.name }}
        {{ product.trackingId }}
        {{ product.dateCreated|date('d. m. Y H:i') }}
        {% if product.active %} ... {% endif %}
        {% if product.compared %} ... {% endif %}
        {% if product.differentVariantPrices %} ... {% endif %}
        {% if product.flagNew %} ... {% endif %}
        {% if product.flagPromo %} ... {% endif %}
        {% if product.flagSecondHand %} ... {% endif %}
        {% if product.flagSellout %} ... {% endif %}
        {% if product.otherDiscountApplicable %} ... {% endif %}
        {% if product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ product.category.id }}
        {{ product.category.productCount }}
        {{ product.category.productInStockCount }}
        {{ product.category.totalStockQuantity }}
        {{ product.category.headline }}
        {{ product.category.menuName }}
        {{ product.category.name }}
        {% if product.category.flagErotic %} ... {% endif %}
        {% if product.category.flagImportant %} ... {% endif %}
        {% if product.category.noFollow %} ... {% endif %}
        {% for category in product.category.subcategories %}
        {% endfor %}
        {% for video in product.category.videos %}
        {% endfor %}
        {{ product.category.pathIds }}
        {{ product.category.pathNames }}
        {{ product.category.templateAttribute }}
        {% if product.category.subHeadline %}
                {{ product.category.subHeadline }}
        {% endif %}
        {% if product.category.text %}
                {{ product.category.text }}
        {% endif %}
        {% if product.category.parent %}
        {% endif %}
        {% if product.category.image %}
        {% endif %}
        {% if product.category.contentGrid %}
                {{ product.category.contentGrid }}
        {% endif %}
        {% for category in product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ product.item.id }}
        {{ product.item.name }}
        {{ product.item.trackingId }}
        {% if product.item.digital %} ... {% endif %}
        {% if product.item.sellable %} ... {% endif %}
        {% if product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in product.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in product.item.availableUpsells %}
        {% endfor %}
        {{ product.item.trackingIds }}
        {{ product.item.storageLocations }}
        {% if product.item.packageHeight %}
                {{ product.item.packageHeight }}
        {% endif %}
        {% if product.item.packageLength %}
                {{ product.item.packageLength }}
        {% endif %}
        {% if product.item.packageWeight %}
                {{ product.item.packageWeight }}
        {% endif %}
        {% if product.item.packageWidth %}
                {{ product.item.packageWidth }}
        {% endif %}
        {% if product.item.code %}
                {{ product.item.code }}
        {% endif %}
        {% if product.item.bundle %}
        {% endif %}
        {% if product.item.cheapestDelivery %}
        {% endif %}
        {% if product.item.freeDelivery %}
        {% endif %}
        {% if product.item.closestFreeDelivery %}
        {% endif %}
        {% if product.item.packageDimensions %}
        {% endif %}
        {% if product.item.image %}
        {% endif %}
        {% if product.item.price %}
        {% endif %}
        {% if product.item.url %}
        {% endif %}
        {% if product.item.variant %}
        {% endif %}
        {% for label in product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {{ product.rating.count }}
        {% if product.rating.voted %} ... {% endif %}
        {% if product.rating.average %}
                {{ product.rating.average }}
        {% endif %}
        {% for upsell in product.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ product.url }}
        {{ product.url.absolute }}
        {{ product.url.path }}
        {% for variantChoiceStep in product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ product.variantType.id }}
        {{ product.variantType.name }}
        {% for video in product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ product.trackingIds }}
        {% if product.currentSubName %}
                {{ product.currentSubName }}
        {% endif %}
        {% if product.nameSuffix %}
                {{ product.nameSuffix }}
        {% endif %}
        {% if product.nameSupplier %}
                {{ product.nameSupplier }}
        {% endif %}
        {% if product.text %}
                {{ product.text }}
        {% endif %}
        {% if product.attribute %}
                {{ product.attribute.name }}
                {{ product.attribute.valuesHtml }}
                {% for attributeValueInstance in product.attribute.values %}
                {% endfor %}
                {% if product.attribute.description %}
                        {{ product.attribute.description }}
                {% endif %}
                {% if product.attribute.group %}
                {% endif %}
                {% if product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if product.brand %}
                {{ product.brand.id }}
                {{ product.brand.name }}
                {% if product.brand.flagImportant %} ... {% endif %}
                {% for category in product.brand.categories %}
                {% endfor %}
                {% if product.brand.code %}
                        {{ product.brand.code }}
                {% endif %}
                {% if product.brand.web %}
                        {{ product.brand.web }}
                {% endif %}
                {% if product.brand.text %}
                        {{ product.brand.text }}
                {% endif %}
                {% if product.brand.image %}
                {% endif %}
                {% if product.brand.seo %}
                {% endif %}
                {% if product.brand.contentGrid %}
                        {{ product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.imageForEnumValueId %}
                {{ product.imageForEnumValueId.originalHeight }}
                {{ product.imageForEnumValueId.originalWidth }}
                {{ product.imageForEnumValueId.url }}
                {% if product.imageForEnumValueId.alt %}
                        {{ product.imageForEnumValueId.alt }}
                {% endif %}
                {% if product.imageForEnumValueId.text %}
                        {{ product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if product.image %}
                {{ product.image.originalHeight }}
                {{ product.image.originalWidth }}
                {{ product.image.url }}
                {% if product.image.alt %}
                        {{ product.image.alt }}
                {% endif %}
                {% if product.image.text %}
                        {{ product.image.text }}
                {% endif %}
        {% endif %}
        {% if product.successor %}
                {{ product.successor.id }}
                {{ product.successor.name }}
                {{ product.successor.trackingId }}
                {{ product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if product.successor.active %} ... {% endif %}
                {% if product.successor.compared %} ... {% endif %}
                {% if product.successor.differentVariantPrices %} ... {% endif %}
                {% if product.successor.flagNew %} ... {% endif %}
                {% if product.successor.flagPromo %} ... {% endif %}
                {% if product.successor.flagSecondHand %} ... {% endif %}
                {% if product.successor.flagSellout %} ... {% endif %}
                {% if product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.successor.categories %}
                {% endfor %}
                {% for category in product.successor.otherCategories %}
                {% endfor %}
                {% for file in product.successor.files %}
                {% endfor %}
                {% for image in product.successor.images %}
                {% endfor %}
                {% for image in product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.successor.images360 %}
                {% endfor %}
                {% for image in product.successor.currentImages %}
                {% endfor %}
                {% for image in product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.successor.otherImages %}
                {% endfor %}
                {% for label in product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in product.successor.enumValues %}
                {% endfor %}
                {% for upsell in product.successor.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.successor.currentVariants %}
                {% endfor %}
                {% for variant in product.successor.variants %}
                {% endfor %}
                {% for variant in product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.successor.videos %}
                {% endfor %}
                {{ product.successor.trackingIds }}
                {% if product.successor.currentSubName %}
                        {{ product.successor.currentSubName }}
                {% endif %}
                {% if product.successor.nameSuffix %}
                        {{ product.successor.nameSuffix }}
                {% endif %}
                {% if product.successor.nameSupplier %}
                        {{ product.successor.nameSupplier }}
                {% endif %}
                {% if product.successor.text %}
                        {{ product.successor.text }}
                {% endif %}
                {% if product.successor.attribute %}
                {% endif %}
                {% if product.successor.brand %}
                {% endif %}
                {% if product.successor.imageForEnumValueId %}
                {% endif %}
                {% if product.successor.image %}
                {% endif %}
                {% if product.successor.seo %}
                {% endif %}
                {% if product.successor.supplier %}
                {% endif %}
                {% if product.successor.unit %}
                {% endif %}
                {% if product.successor.variant %}
                {% endif %}
                {% if product.successor.warranty %}
                {% endif %}
                {% if product.successor.contentGrid %}
                        {{ product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if product.seo %}
                {% if product.seo.description %}
                        {{ product.seo.description }}
                {% endif %}
                {% if product.seo.keywords %}
                        {{ product.seo.keywords }}
                {% endif %}
                {% if product.seo.title %}
                        {{ product.seo.title }}
                {% endif %}
        {% endif %}
        {% if product.supplier %}
                {{ product.supplier.id }}
                {{ product.supplier.name }}
        {% endif %}
        {% if product.unit %}
                {{ product.unit.name }}
        {% endif %}
        {% if product.variant %}
                {{ product.variant.id }}
                {{ product.variant.name }}
                {{ product.variant.trackingId }}
                {% if product.variant.active %} ... {% endif %}
                {% if product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in product.variant.enumValues %}
                {% endfor %}
                {% for image in product.variant.images %}
                {% endfor %}
                {% for upsell in product.variant.availableUpsells %}
                {% endfor %}
                {% if product.variant.legacyRel %}
                        {{ product.variant.legacyRel }}
                {% endif %}
                {% if product.variant.image %}
                {% endif %}
        {% endif %}
        {% if product.warranty %}
                {{ product.warranty.months }}
        {% endif %}
        {% if product.contentGrid %}
                {{ product.contentGrid }}
        {% endif %}
{% endfor %}
{{ variant.product.rating.count }}
{% if variant.product.rating.voted %} ... {% endif %}
{% if variant.product.rating.average %}
        {{ variant.product.rating.average }}
{% endif %}
{% for upsell in variant.product.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
        {% endfor %}
        {% for video in upsell.category.videos %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
        {% endif %}
        {% if upsell.category.image %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
        {% endif %}
        {% if upsell.price.discount %}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ variant.product.url }}
{{ variant.product.url.absolute }}
{{ variant.product.url.path }}
{% for variantChoiceStep in variant.product.variantChoiceSteps %}
        {{ variantChoiceStep.headline }}
        {{ variantChoiceStep.inputName }}
        {{ variantChoiceStep.mode }}
        {% if variantChoiceStep.final %} ... {% endif %}
        {% for variantChoice in variantChoiceStep.choices %}
                {{ variantChoice.inputValue }}
                {{ variantChoice.name }}
                {% if variantChoice.selected %} ... {% endif %}
                {% if variantChoice.color %}
                        {{ variantChoice.color }}
                {% endif %}
                {% if variantChoice.description %}
                        {{ variantChoice.description }}
                {% endif %}
                {% if variantChoice.availability %}
                {% endif %}
                {% if variantChoice.bundle %}
                {% endif %}
                {% if variantChoice.icon %}
                {% endif %}
                {% if variantChoice.image %}
                {% endif %}
                {% if variantChoice.price %}
                {% endif %}
        {% endfor %}
        {% if variantChoiceStep.description %}
                {{ variantChoiceStep.description }}
        {% endif %}
        {% if variantChoiceStep.infoDescription %}
                {{ variantChoiceStep.infoDescription }}
        {% endif %}
        {% if variantChoiceStep.messageEmpty %}
                {{ variantChoiceStep.messageEmpty }}
        {% endif %}
        {% if variantChoiceStep.placeholder %}
                {{ variantChoiceStep.placeholder }}
        {% endif %}
        {% if variantChoiceStep.icon %}
                {{ variantChoiceStep.icon.originalHeight }}
                {{ variantChoiceStep.icon.originalWidth }}
                {{ variantChoiceStep.icon.url }}
                {% if variantChoiceStep.icon.alt %}
                        {{ variantChoiceStep.icon.alt }}
                {% endif %}
                {% if variantChoiceStep.icon.text %}
                        {{ variantChoiceStep.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.infoIcon %}
                {{ variantChoiceStep.infoIcon.originalHeight }}
                {{ variantChoiceStep.infoIcon.originalWidth }}
                {{ variantChoiceStep.infoIcon.url }}
                {% if variantChoiceStep.infoIcon.alt %}
                        {{ variantChoiceStep.infoIcon.alt }}
                {% endif %}
                {% if variantChoiceStep.infoIcon.text %}
                        {{ variantChoiceStep.infoIcon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.info %}
                {{ variantChoiceStep.info.id }}
                {{ variantChoiceStep.info.name }}
                {% for file in variantChoiceStep.info.files %}
                {% endfor %}
                {% for image in variantChoiceStep.info.images %}
                {% endfor %}
                {% for textPage in variantChoiceStep.info.subPages %}
                {% endfor %}
                {% for video in variantChoiceStep.info.videos %}
                {% endfor %}
                {% if variantChoiceStep.info.code %}
                        {{ variantChoiceStep.info.code }}
                {% endif %}
                {% if variantChoiceStep.info.text %}
                        {{ variantChoiceStep.info.text }}
                {% endif %}
                {% if variantChoiceStep.info.image %}
                {% endif %}
                {% if variantChoiceStep.info.contentGrid %}
                        {{ variantChoiceStep.info.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variantChoiceStep.selectedChoice %}
                {{ variantChoiceStep.selectedChoice.inputValue }}
                {{ variantChoiceStep.selectedChoice.name }}
                {% if variantChoiceStep.selectedChoice.selected %} ... {% endif %}
                {% if variantChoiceStep.selectedChoice.color %}
                        {{ variantChoiceStep.selectedChoice.color }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.description %}
                        {{ variantChoiceStep.selectedChoice.description }}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.availability %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.bundle %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.icon %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.image %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice.price %}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in variant.product.currentVariants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in variant.product.variants %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{% for variant in variant.product.variantsWithEnumValueIds %}
        {{ variant.id }}
        {{ variant.name }}
        {{ variant.trackingId }}
        {% if variant.active %} ... {% endif %}
        {% if variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.item.id }}
        {{ variant.item.name }}
        {{ variant.item.trackingId }}
        {% if variant.item.digital %} ... {% endif %}
        {% if variant.item.sellable %} ... {% endif %}
        {% if variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.item.trackingIds }}
        {{ variant.item.storageLocations }}
        {% if variant.item.packageHeight %}
                {{ variant.item.packageHeight }}
        {% endif %}
        {% if variant.item.packageLength %}
                {{ variant.item.packageLength }}
        {% endif %}
        {% if variant.item.packageWeight %}
                {{ variant.item.packageWeight }}
        {% endif %}
        {% if variant.item.packageWidth %}
                {{ variant.item.packageWidth }}
        {% endif %}
        {% if variant.item.code %}
                {{ variant.item.code }}
        {% endif %}
        {% if variant.item.bundle %}
        {% endif %}
        {% if variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.item.freeDelivery %}
        {% endif %}
        {% if variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.item.packageDimensions %}
        {% endif %}
        {% if variant.item.image %}
        {% endif %}
        {% if variant.item.price %}
        {% endif %}
        {% if variant.item.url %}
        {% endif %}
        {% if variant.item.variant %}
        {% endif %}
        {% for upsell in variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.url }}
        {{ variant.url.absolute }}
        {{ variant.url.path }}
        {% if variant.legacyRel %}
                {{ variant.legacyRel }}
        {% endif %}
        {% if variant.image %}
                {{ variant.image.originalHeight }}
                {{ variant.image.originalWidth }}
                {{ variant.image.url }}
                {% if variant.image.alt %}
                        {{ variant.image.alt }}
                {% endif %}
                {% if variant.image.text %}
                        {{ variant.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ variant.product.variantType.id }}
{{ variant.product.variantType.name }}
{% for video in variant.product.videos %}
        {{ video.embeddedUrl }}
        {% if video.name %}
                {{ video.name }}
        {% endif %}
        {% if video.image %}
                {{ video.image.originalHeight }}
                {{ video.image.originalWidth }}
                {{ video.image.url }}
                {% if video.image.alt %}
                        {{ video.image.alt }}
                {% endif %}
                {% if video.image.text %}
                        {{ video.image.text }}
                {% endif %}
        {% endif %}
{% endfor %}
{{ variant.product.trackingIds }}
{% if variant.product.currentSubName %}
        {{ variant.product.currentSubName }}
{% endif %}
{% if variant.product.nameSuffix %}
        {{ variant.product.nameSuffix }}
{% endif %}
{% if variant.product.nameSupplier %}
        {{ variant.product.nameSupplier }}
{% endif %}
{% if variant.product.text %}
        {{ variant.product.text }}
{% endif %}
{% if variant.product.attribute %}
        {{ variant.product.attribute.name }}
        {{ variant.product.attribute.valuesHtml }}
        {% for attributeValueInstance in variant.product.attribute.values %}
                {{ attributeValueInstance.values }}
                {{ attributeValueInstance.nameHtml }}
                {% if attributeValueInstance.colorCode %}
                        {{ attributeValueInstance.colorCode }}
                {% endif %}
                {% if attributeValueInstance.text %}
                        {{ attributeValueInstance.text }}
                {% endif %}
                {% if attributeValueInstance.unit %}
                        {{ attributeValueInstance.unit }}
                {% endif %}
                {% if attributeValueInstance.image %}
                {% endif %}
                {% if attributeValueInstance.name %}
                        {{ attributeValueInstance.name }}
                {% endif %}
        {% endfor %}
        {% if variant.product.attribute.description %}
                {{ variant.product.attribute.description }}
        {% endif %}
        {% if variant.product.attribute.group %}
                {{ variant.product.attribute.group.id }}
        {% endif %}
        {% if variant.product.attribute.image %}
                {{ variant.product.attribute.image.originalHeight }}
                {{ variant.product.attribute.image.originalWidth }}
                {{ variant.product.attribute.image.url }}
                {% if variant.product.attribute.image.alt %}
                        {{ variant.product.attribute.image.alt }}
                {% endif %}
                {% if variant.product.attribute.image.text %}
                        {{ variant.product.attribute.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if variant.product.brand %}
        {{ variant.product.brand.id }}
        {{ variant.product.brand.name }}
        {% if variant.product.brand.flagImportant %} ... {% endif %}
        {% for category in variant.product.brand.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variant.product.brand.url }}
        {{ variant.product.brand.url.absolute }}
        {{ variant.product.brand.url.path }}
        {{ variant.product.brand.categoryUrl }}
        {{ variant.product.brand.categoryUrl.absolute }}
        {{ variant.product.brand.categoryUrl.path }}
        {% if variant.product.brand.code %}
                {{ variant.product.brand.code }}
        {% endif %}
        {% if variant.product.brand.web %}
                {{ variant.product.brand.web }}
        {% endif %}
        {% if variant.product.brand.text %}
                {{ variant.product.brand.text }}
        {% endif %}
        {% if variant.product.brand.image %}
                {{ variant.product.brand.image.originalHeight }}
                {{ variant.product.brand.image.originalWidth }}
                {{ variant.product.brand.image.url }}
                {% if variant.product.brand.image.alt %}
                        {{ variant.product.brand.image.alt }}
                {% endif %}
                {% if variant.product.brand.image.text %}
                        {{ variant.product.brand.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.brand.seo %}
                {% if variant.product.brand.seo.description %}
                        {{ variant.product.brand.seo.description }}
                {% endif %}
                {% if variant.product.brand.seo.keywords %}
                        {{ variant.product.brand.seo.keywords }}
                {% endif %}
                {% if variant.product.brand.seo.title %}
                        {{ variant.product.brand.seo.title }}
                {% endif %}
        {% endif %}
        {% if variant.product.brand.contentGrid %}
                {{ variant.product.brand.contentGrid }}
        {% endif %}
{% endif %}
{% if variant.product.imageForEnumValueId %}
        {{ variant.product.imageForEnumValueId.originalHeight }}
        {{ variant.product.imageForEnumValueId.originalWidth }}
        {{ variant.product.imageForEnumValueId.url }}
        {% if variant.product.imageForEnumValueId.alt %}
                {{ variant.product.imageForEnumValueId.alt }}
        {% endif %}
        {% if variant.product.imageForEnumValueId.text %}
                {{ variant.product.imageForEnumValueId.text }}
        {% endif %}
{% endif %}
{% if variant.product.image %}
        {{ variant.product.image.originalHeight }}
        {{ variant.product.image.originalWidth }}
        {{ variant.product.image.url }}
        {% if variant.product.image.alt %}
                {{ variant.product.image.alt }}
        {% endif %}
        {% if variant.product.image.text %}
                {{ variant.product.image.text }}
        {% endif %}
{% endif %}
{% if variant.product.successor %}
        {{ variant.product.successor.id }}
        {{ variant.product.successor.name }}
        {{ variant.product.successor.trackingId }}
        {{ variant.product.successor.dateCreated|date('d. m. Y H:i') }}
        {% if variant.product.successor.active %} ... {% endif %}
        {% if variant.product.successor.compared %} ... {% endif %}
        {% if variant.product.successor.differentVariantPrices %} ... {% endif %}
        {% if variant.product.successor.flagNew %} ... {% endif %}
        {% if variant.product.successor.flagPromo %} ... {% endif %}
        {% if variant.product.successor.flagSecondHand %} ... {% endif %}
        {% if variant.product.successor.flagSellout %} ... {% endif %}
        {% if variant.product.successor.otherDiscountApplicable %} ... {% endif %}
        {% if variant.product.successor.soldSeparately %} ... {% endif %}
        {% for attributeInstance in variant.product.successor.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in variant.product.successor.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ variant.product.successor.category.id }}
        {{ variant.product.successor.category.productCount }}
        {{ variant.product.successor.category.productInStockCount }}
        {{ variant.product.successor.category.totalStockQuantity }}
        {{ variant.product.successor.category.headline }}
        {{ variant.product.successor.category.menuName }}
        {{ variant.product.successor.category.name }}
        {% if variant.product.successor.category.flagErotic %} ... {% endif %}
        {% if variant.product.successor.category.flagImportant %} ... {% endif %}
        {% if variant.product.successor.category.noFollow %} ... {% endif %}
        {% for category in variant.product.successor.category.subcategories %}
        {% endfor %}
        {% for video in variant.product.successor.category.videos %}
        {% endfor %}
        {{ variant.product.successor.category.pathIds }}
        {{ variant.product.successor.category.pathNames }}
        {{ variant.product.successor.category.templateAttribute }}
        {% if variant.product.successor.category.subHeadline %}
                {{ variant.product.successor.category.subHeadline }}
        {% endif %}
        {% if variant.product.successor.category.text %}
                {{ variant.product.successor.category.text }}
        {% endif %}
        {% if variant.product.successor.category.parent %}
        {% endif %}
        {% if variant.product.successor.category.image %}
        {% endif %}
        {% if variant.product.successor.category.contentGrid %}
                {{ variant.product.successor.category.contentGrid }}
        {% endif %}
        {% for category in variant.product.successor.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in variant.product.successor.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in variant.product.successor.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.successor.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.successor.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.successor.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.successor.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.successor.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.successor.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.product.successor.item.id }}
        {{ variant.product.successor.item.name }}
        {{ variant.product.successor.item.trackingId }}
        {% if variant.product.successor.item.digital %} ... {% endif %}
        {% if variant.product.successor.item.sellable %} ... {% endif %}
        {% if variant.product.successor.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.successor.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.product.successor.item.availableUpsells %}
        {% endfor %}
        {{ variant.product.successor.item.trackingIds }}
        {{ variant.product.successor.item.storageLocations }}
        {% if variant.product.successor.item.packageHeight %}
                {{ variant.product.successor.item.packageHeight }}
        {% endif %}
        {% if variant.product.successor.item.packageLength %}
                {{ variant.product.successor.item.packageLength }}
        {% endif %}
        {% if variant.product.successor.item.packageWeight %}
                {{ variant.product.successor.item.packageWeight }}
        {% endif %}
        {% if variant.product.successor.item.packageWidth %}
                {{ variant.product.successor.item.packageWidth }}
        {% endif %}
        {% if variant.product.successor.item.code %}
                {{ variant.product.successor.item.code }}
        {% endif %}
        {% if variant.product.successor.item.bundle %}
        {% endif %}
        {% if variant.product.successor.item.cheapestDelivery %}
        {% endif %}
        {% if variant.product.successor.item.freeDelivery %}
        {% endif %}
        {% if variant.product.successor.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.product.successor.item.packageDimensions %}
        {% endif %}
        {% if variant.product.successor.item.image %}
        {% endif %}
        {% if variant.product.successor.item.price %}
        {% endif %}
        {% if variant.product.successor.item.url %}
        {% endif %}
        {% if variant.product.successor.item.variant %}
        {% endif %}
        {% for label in variant.product.successor.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in variant.product.successor.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in variant.product.successor.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for upsell in product.availableUpsells %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variant.product.successor.rating.count }}
        {% if variant.product.successor.rating.voted %} ... {% endif %}
        {% if variant.product.successor.rating.average %}
                {{ variant.product.successor.rating.average }}
        {% endif %}
        {% for upsell in variant.product.successor.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.product.successor.url }}
        {{ variant.product.successor.url.absolute }}
        {{ variant.product.successor.url.path }}
        {% for variantChoiceStep in variant.product.successor.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.successor.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.successor.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in variant.product.successor.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% for upsell in variant.availableUpsells %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.successor.variantType.id }}
        {{ variant.product.successor.variantType.name }}
        {% for video in variant.product.successor.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ variant.product.successor.trackingIds }}
        {% if variant.product.successor.currentSubName %}
                {{ variant.product.successor.currentSubName }}
        {% endif %}
        {% if variant.product.successor.nameSuffix %}
                {{ variant.product.successor.nameSuffix }}
        {% endif %}
        {% if variant.product.successor.nameSupplier %}
                {{ variant.product.successor.nameSupplier }}
        {% endif %}
        {% if variant.product.successor.text %}
                {{ variant.product.successor.text }}
        {% endif %}
        {% if variant.product.successor.attribute %}
                {{ variant.product.successor.attribute.name }}
                {{ variant.product.successor.attribute.valuesHtml }}
                {% for attributeValueInstance in variant.product.successor.attribute.values %}
                {% endfor %}
                {% if variant.product.successor.attribute.description %}
                        {{ variant.product.successor.attribute.description }}
                {% endif %}
                {% if variant.product.successor.attribute.group %}
                {% endif %}
                {% if variant.product.successor.attribute.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.successor.brand %}
                {{ variant.product.successor.brand.id }}
                {{ variant.product.successor.brand.name }}
                {% if variant.product.successor.brand.flagImportant %} ... {% endif %}
                {% for category in variant.product.successor.brand.categories %}
                {% endfor %}
                {% if variant.product.successor.brand.code %}
                        {{ variant.product.successor.brand.code }}
                {% endif %}
                {% if variant.product.successor.brand.web %}
                        {{ variant.product.successor.brand.web }}
                {% endif %}
                {% if variant.product.successor.brand.text %}
                        {{ variant.product.successor.brand.text }}
                {% endif %}
                {% if variant.product.successor.brand.image %}
                {% endif %}
                {% if variant.product.successor.brand.seo %}
                {% endif %}
                {% if variant.product.successor.brand.contentGrid %}
                        {{ variant.product.successor.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor.imageForEnumValueId %}
                {{ variant.product.successor.imageForEnumValueId.originalHeight }}
                {{ variant.product.successor.imageForEnumValueId.originalWidth }}
                {{ variant.product.successor.imageForEnumValueId.url }}
                {% if variant.product.successor.imageForEnumValueId.alt %}
                        {{ variant.product.successor.imageForEnumValueId.alt }}
                {% endif %}
                {% if variant.product.successor.imageForEnumValueId.text %}
                        {{ variant.product.successor.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor.image %}
                {{ variant.product.successor.image.originalHeight }}
                {{ variant.product.successor.image.originalWidth }}
                {{ variant.product.successor.image.url }}
                {% if variant.product.successor.image.alt %}
                        {{ variant.product.successor.image.alt }}
                {% endif %}
                {% if variant.product.successor.image.text %}
                        {{ variant.product.successor.image.text }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor.seo %}
                {% if variant.product.successor.seo.description %}
                        {{ variant.product.successor.seo.description }}
                {% endif %}
                {% if variant.product.successor.seo.keywords %}
                        {{ variant.product.successor.seo.keywords }}
                {% endif %}
                {% if variant.product.successor.seo.title %}
                        {{ variant.product.successor.seo.title }}
                {% endif %}
        {% endif %}
        {% if variant.product.successor.supplier %}
                {{ variant.product.successor.supplier.id }}
                {{ variant.product.successor.supplier.name }}
        {% endif %}
        {% if variant.product.successor.unit %}
                {{ variant.product.successor.unit.name }}
        {% endif %}
        {% if variant.product.successor.variant %}
                {{ variant.product.successor.variant.id }}
                {{ variant.product.successor.variant.name }}
                {{ variant.product.successor.variant.trackingId }}
                {% if variant.product.successor.variant.active %} ... {% endif %}
                {% if variant.product.successor.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.product.successor.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.product.successor.variant.enumValues %}
                {% endfor %}
                {% for image in variant.product.successor.variant.images %}
                {% endfor %}
                {% for upsell in variant.product.successor.variant.availableUpsells %}
                {% endfor %}
                {% if variant.product.successor.variant.legacyRel %}
                        {{ variant.product.successor.variant.legacyRel }}
                {% endif %}
                {% if variant.product.successor.variant.image %}
                {% endif %}
        {% endif %}
        {% if variant.product.successor.warranty %}
                {{ variant.product.successor.warranty.months }}
        {% endif %}
        {% if variant.product.successor.contentGrid %}
                {{ variant.product.successor.contentGrid }}
        {% endif %}
{% endif %}
{% if variant.product.seo %}
        {% if variant.product.seo.description %}
                {{ variant.product.seo.description }}
        {% endif %}
        {% if variant.product.seo.keywords %}
                {{ variant.product.seo.keywords }}
        {% endif %}
        {% if variant.product.seo.title %}
                {{ variant.product.seo.title }}
        {% endif %}
{% endif %}
{% if variant.product.supplier %}
        {{ variant.product.supplier.id }}
        {{ variant.product.supplier.name }}
{% endif %}
{% if variant.product.unit %}
        {{ variant.product.unit.name }}
{% endif %}
{% if variant.product.variant %}
        {{ variant.product.variant.id }}
        {{ variant.product.variant.name }}
        {{ variant.product.variant.trackingId }}
        {% if variant.product.variant.active %} ... {% endif %}
        {% if variant.product.variant.selected %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.variant.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {% for enumValue in variant.product.variant.enumValues %}
                {{ enumValue.id }}
                {{ enumValue.name }}
                {% if enumValue.text %}
                        {{ enumValue.text }}
                {% endif %}
                {% if enumValue.image %}
                {% endif %}
        {% endfor %}
        {% for image in variant.product.variant.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ variant.product.variant.item.id }}
        {{ variant.product.variant.item.name }}
        {{ variant.product.variant.item.trackingId }}
        {% if variant.product.variant.item.digital %} ... {% endif %}
        {% if variant.product.variant.item.sellable %} ... {% endif %}
        {% if variant.product.variant.item.service %} ... {% endif %}
        {% for availableUpsellGroup in variant.product.variant.item.availableUpsellGroups %}
        {% endfor %}
        {% for upsell in variant.product.variant.item.availableUpsells %}
        {% endfor %}
        {{ variant.product.variant.item.trackingIds }}
        {{ variant.product.variant.item.storageLocations }}
        {% if variant.product.variant.item.packageHeight %}
                {{ variant.product.variant.item.packageHeight }}
        {% endif %}
        {% if variant.product.variant.item.packageLength %}
                {{ variant.product.variant.item.packageLength }}
        {% endif %}
        {% if variant.product.variant.item.packageWeight %}
                {{ variant.product.variant.item.packageWeight }}
        {% endif %}
        {% if variant.product.variant.item.packageWidth %}
                {{ variant.product.variant.item.packageWidth }}
        {% endif %}
        {% if variant.product.variant.item.code %}
                {{ variant.product.variant.item.code }}
        {% endif %}
        {% if variant.product.variant.item.bundle %}
        {% endif %}
        {% if variant.product.variant.item.cheapestDelivery %}
        {% endif %}
        {% if variant.product.variant.item.freeDelivery %}
        {% endif %}
        {% if variant.product.variant.item.closestFreeDelivery %}
        {% endif %}
        {% if variant.product.variant.item.packageDimensions %}
        {% endif %}
        {% if variant.product.variant.item.image %}
        {% endif %}
        {% if variant.product.variant.item.price %}
        {% endif %}
        {% if variant.product.variant.item.url %}
        {% endif %}
        {% for upsell in variant.product.variant.availableUpsells %}
                {{ upsell.id }}
                {{ upsell.name }}
                {% if upsell.inCart %} ... {% endif %}
                {% if upsell.code %}
                        {{ upsell.code }}
                {% endif %}
                {% if upsell.vatRate %}
                        {{ upsell.vatRate }}
                {% endif %}
                {% if upsell.image %}
                {% endif %}
                {% if upsell.unit %}
                {% endif %}
        {% endfor %}
        {{ variant.product.variant.url }}
        {{ variant.product.variant.url.absolute }}
        {{ variant.product.variant.url.path }}
        {% if variant.product.variant.legacyRel %}
                {{ variant.product.variant.legacyRel }}
        {% endif %}
        {% if variant.product.variant.image %}
                {{ variant.product.variant.image.originalHeight }}
                {{ variant.product.variant.image.originalWidth }}
                {{ variant.product.variant.image.url }}
                {% if variant.product.variant.image.alt %}
                        {{ variant.product.variant.image.alt }}
                {% endif %}
                {% if variant.product.variant.image.text %}
                        {{ variant.product.variant.image.text }}
                {% endif %}
        {% endif %}
{% endif %}
{% if variant.product.warranty %}
        {{ variant.product.warranty.months }}
{% endif %}
{% if variant.product.contentGrid %}
        {{ variant.product.contentGrid }}
{% endif %}

{% for upsell in variant.availableUpsells %}
        {{ upsell.id }}
        {{ upsell.name }}
        {% if upsell.inCart %} ... {% endif %}
        {{ upsell.category.id }}
        {{ upsell.category.productCount }}
        {{ upsell.category.productInStockCount }}
        {{ upsell.category.totalStockQuantity }}
        {{ upsell.category.headline }}
        {{ upsell.category.menuName }}
        {{ upsell.category.name }}
        {% if upsell.category.flagErotic %} ... {% endif %}
        {% if upsell.category.flagImportant %} ... {% endif %}
        {% if upsell.category.noFollow %} ... {% endif %}
        {% for category in upsell.category.subcategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.category.url }}
        {{ upsell.category.url.absolute }}
        {{ upsell.category.url.path }}
        {{ upsell.category.variantType.id }}
        {{ upsell.category.variantType.name }}
        {% for video in upsell.category.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.category.pathIds }}
        {{ upsell.category.pathNames }}
        {{ upsell.category.templateAttribute }}
        {% if upsell.category.subHeadline %}
                {{ upsell.category.subHeadline }}
        {% endif %}
        {% if upsell.category.text %}
                {{ upsell.category.text }}
        {% endif %}
        {% if upsell.category.parent %}
                {{ upsell.category.parent.id }}
                {{ upsell.category.parent.productCount }}
                {{ upsell.category.parent.productInStockCount }}
                {{ upsell.category.parent.totalStockQuantity }}
                {{ upsell.category.parent.headline }}
                {{ upsell.category.parent.menuName }}
                {{ upsell.category.parent.name }}
                {% if upsell.category.parent.flagErotic %} ... {% endif %}
                {% if upsell.category.parent.flagImportant %} ... {% endif %}
                {% if upsell.category.parent.noFollow %} ... {% endif %}
                {% for category in upsell.category.parent.subcategories %}
                {% endfor %}
                {% for video in upsell.category.parent.videos %}
                {% endfor %}
                {{ upsell.category.parent.pathIds }}
                {{ upsell.category.parent.pathNames }}
                {{ upsell.category.parent.templateAttribute }}
                {% if upsell.category.parent.subHeadline %}
                        {{ upsell.category.parent.subHeadline }}
                {% endif %}
                {% if upsell.category.parent.text %}
                        {{ upsell.category.parent.text }}
                {% endif %}
                {% if upsell.category.parent.image %}
                {% endif %}
                {% if upsell.category.parent.contentGrid %}
                        {{ upsell.category.parent.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.category.image %}
                {{ upsell.category.image.originalHeight }}
                {{ upsell.category.image.originalWidth }}
                {{ upsell.category.image.url }}
                {% if upsell.category.image.alt %}
                        {{ upsell.category.image.alt }}
                {% endif %}
                {% if upsell.category.image.text %}
                        {{ upsell.category.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.category.contentGrid %}
                {{ upsell.category.contentGrid }}
        {% endif %}
        {{ upsell.price.vatRate }}
        {{ upsell.price.current.currency }}
        {{ upsell.price.current.formatted }}
        {{ upsell.price.current.value }}
        {% if upsell.price.discountPercent %}
                {{ upsell.price.discountPercent }}
        {% endif %}
        {% if upsell.price.discountValidTo %}
                {{ upsell.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if upsell.price.beforeDiscount %}
                {{ upsell.price.beforeDiscount.currency }}
                {{ upsell.price.beforeDiscount.formatted }}
                {{ upsell.price.beforeDiscount.value }}
        {% endif %}
        {% if upsell.price.discount %}
                {{ upsell.price.discount.currency }}
                {{ upsell.price.discount.formatted }}
                {{ upsell.price.discount.value }}
        {% endif %}
        {{ upsell.product.id }}
        {{ upsell.product.name }}
        {{ upsell.product.trackingId }}
        {{ upsell.product.dateCreated|date('d. m. Y H:i') }}
        {% if upsell.product.active %} ... {% endif %}
        {% if upsell.product.compared %} ... {% endif %}
        {% if upsell.product.differentVariantPrices %} ... {% endif %}
        {% if upsell.product.flagNew %} ... {% endif %}
        {% if upsell.product.flagPromo %} ... {% endif %}
        {% if upsell.product.flagSecondHand %} ... {% endif %}
        {% if upsell.product.flagSellout %} ... {% endif %}
        {% if upsell.product.otherDiscountApplicable %} ... {% endif %}
        {% if upsell.product.soldSeparately %} ... {% endif %}
        {% for attributeInstance in upsell.product.attributes %}
                {{ attributeInstance.name }}
                {{ attributeInstance.valuesHtml }}
                {% for attributeValueInstance in attributeInstance.values %}
                {% endfor %}
                {% if attributeInstance.description %}
                        {{ attributeInstance.description }}
                {% endif %}
                {% if attributeInstance.group %}
                {% endif %}
                {% if attributeInstance.image %}
                {% endif %}
        {% endfor %}
        {% for availableUpsellGroup in upsell.product.availableUpsellGroups %}
                {{ availableUpsellGroup.id }}
                {{ availableUpsellGroup.name }}
                {% if availableUpsellGroup.singleSelection %} ... {% endif %}
                {% for upsell in availableUpsellGroup.upsells %}
                {% endfor %}
                {% if availableUpsellGroup.code %}
                        {{ availableUpsellGroup.code }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.category.id }}
        {{ upsell.product.category.productCount }}
        {{ upsell.product.category.productInStockCount }}
        {{ upsell.product.category.totalStockQuantity }}
        {{ upsell.product.category.headline }}
        {{ upsell.product.category.menuName }}
        {{ upsell.product.category.name }}
        {% if upsell.product.category.flagErotic %} ... {% endif %}
        {% if upsell.product.category.flagImportant %} ... {% endif %}
        {% if upsell.product.category.noFollow %} ... {% endif %}
        {% for category in upsell.product.category.subcategories %}
        {% endfor %}
        {% for video in upsell.product.category.videos %}
        {% endfor %}
        {{ upsell.product.category.pathIds }}
        {{ upsell.product.category.pathNames }}
        {{ upsell.product.category.templateAttribute }}
        {% if upsell.product.category.subHeadline %}
                {{ upsell.product.category.subHeadline }}
        {% endif %}
        {% if upsell.product.category.text %}
                {{ upsell.product.category.text }}
        {% endif %}
        {% if upsell.product.category.parent %}
        {% endif %}
        {% if upsell.product.category.image %}
        {% endif %}
        {% if upsell.product.category.contentGrid %}
                {{ upsell.product.category.contentGrid }}
        {% endif %}
        {% for category in upsell.product.categories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for category in upsell.product.otherCategories %}
                {{ category.id }}
                {{ category.productCount }}
                {{ category.productInStockCount }}
                {{ category.totalStockQuantity }}
                {{ category.headline }}
                {{ category.menuName }}
                {{ category.name }}
                {% if category.flagErotic %} ... {% endif %}
                {% if category.flagImportant %} ... {% endif %}
                {% if category.noFollow %} ... {% endif %}
                {% for category in category.subcategories %}
                {% endfor %}
                {% for video in category.videos %}
                {% endfor %}
                {{ category.pathIds }}
                {{ category.pathNames }}
                {{ category.templateAttribute }}
                {% if category.subHeadline %}
                        {{ category.subHeadline }}
                {% endif %}
                {% if category.text %}
                        {{ category.text }}
                {% endif %}
                {% if category.parent %}
                {% endif %}
                {% if category.image %}
                {% endif %}
                {% if category.contentGrid %}
                        {{ category.contentGrid }}
                {% endif %}
        {% endfor %}
        {% for file in upsell.product.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.images360 %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.currentImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.imagesWithoutEnumValue %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for image in upsell.product.otherImages %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.item.id }}
        {{ upsell.product.item.name }}
        {{ upsell.product.item.trackingId }}
        {% if upsell.product.item.digital %} ... {% endif %}
        {% if upsell.product.item.sellable %} ... {% endif %}
        {% if upsell.product.item.service %} ... {% endif %}
        {% for availableUpsellGroup in upsell.product.item.availableUpsellGroups %}
        {% endfor %}
        {{ upsell.product.item.trackingIds }}
        {{ upsell.product.item.storageLocations }}
        {% if upsell.product.item.packageHeight %}
                {{ upsell.product.item.packageHeight }}
        {% endif %}
        {% if upsell.product.item.packageLength %}
                {{ upsell.product.item.packageLength }}
        {% endif %}
        {% if upsell.product.item.packageWeight %}
                {{ upsell.product.item.packageWeight }}
        {% endif %}
        {% if upsell.product.item.packageWidth %}
                {{ upsell.product.item.packageWidth }}
        {% endif %}
        {% if upsell.product.item.code %}
                {{ upsell.product.item.code }}
        {% endif %}
        {% if upsell.product.item.bundle %}
        {% endif %}
        {% if upsell.product.item.cheapestDelivery %}
        {% endif %}
        {% if upsell.product.item.freeDelivery %}
        {% endif %}
        {% if upsell.product.item.closestFreeDelivery %}
        {% endif %}
        {% if upsell.product.item.packageDimensions %}
        {% endif %}
        {% if upsell.product.item.image %}
        {% endif %}
        {% if upsell.product.item.price %}
        {% endif %}
        {% if upsell.product.item.url %}
        {% endif %}
        {% if upsell.product.item.variant %}
        {% endif %}
        {% for label in upsell.product.labels %}
                {{ label.id }}
                {{ label.name }}
                {% if label.code %}
                        {{ label.code }}
                {% endif %}
                {% if label.colorCode %}
                        {{ label.colorCode }}
                {% endif %}
                {% if label.image %}
                {% endif %}
        {% endfor %}
        {% for productEnumValue in upsell.product.enumValues %}
                {{ productEnumValue.id }}
                {{ productEnumValue.name }}
                {% if productEnumValue.selected %} ... {% endif %}
                {% for variant in productEnumValue.variants %}
                {% endfor %}
                {% if productEnumValue.text %}
                        {{ productEnumValue.text }}
                {% endif %}
                {% if productEnumValue.image %}
                {% endif %}
                {% if productEnumValue.variantImage %}
                {% endif %}
        {% endfor %}
        {% for product in upsell.product.packTemplateProducts %}
                {{ product.id }}
                {{ product.name }}
                {{ product.trackingId }}
                {{ product.dateCreated|date('d. m. Y H:i') }}
                {% if product.active %} ... {% endif %}
                {% if product.compared %} ... {% endif %}
                {% if product.differentVariantPrices %} ... {% endif %}
                {% if product.flagNew %} ... {% endif %}
                {% if product.flagPromo %} ... {% endif %}
                {% if product.flagSecondHand %} ... {% endif %}
                {% if product.flagSellout %} ... {% endif %}
                {% if product.otherDiscountApplicable %} ... {% endif %}
                {% if product.soldSeparately %} ... {% endif %}
                {% for attributeInstance in product.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in product.availableUpsellGroups %}
                {% endfor %}
                {% for category in product.categories %}
                {% endfor %}
                {% for category in product.otherCategories %}
                {% endfor %}
                {% for file in product.files %}
                {% endfor %}
                {% for image in product.images %}
                {% endfor %}
                {% for image in product.imagesWithEnumValue %}
                {% endfor %}
                {% for image in product.images360 %}
                {% endfor %}
                {% for image in product.currentImages %}
                {% endfor %}
                {% for image in product.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in product.otherImages %}
                {% endfor %}
                {% for label in product.labels %}
                {% endfor %}
                {% for productEnumValue in product.enumValues %}
                {% endfor %}
                {% for variantChoiceStep in product.variantChoiceSteps %}
                {% endfor %}
                {% for variant in product.currentVariants %}
                {% endfor %}
                {% for variant in product.variants %}
                {% endfor %}
                {% for variant in product.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in product.videos %}
                {% endfor %}
                {{ product.trackingIds }}
                {% if product.currentSubName %}
                        {{ product.currentSubName }}
                {% endif %}
                {% if product.nameSuffix %}
                        {{ product.nameSuffix }}
                {% endif %}
                {% if product.nameSupplier %}
                        {{ product.nameSupplier }}
                {% endif %}
                {% if product.text %}
                        {{ product.text }}
                {% endif %}
                {% if product.attribute %}
                {% endif %}
                {% if product.brand %}
                {% endif %}
                {% if product.imageForEnumValueId %}
                {% endif %}
                {% if product.image %}
                {% endif %}
                {% if product.successor %}
                {% endif %}
                {% if product.seo %}
                {% endif %}
                {% if product.supplier %}
                {% endif %}
                {% if product.unit %}
                {% endif %}
                {% if product.variant %}
                {% endif %}
                {% if product.warranty %}
                {% endif %}
                {% if product.contentGrid %}
                        {{ product.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ upsell.product.rating.count }}
        {% if upsell.product.rating.voted %} ... {% endif %}
        {% if upsell.product.rating.average %}
                {{ upsell.product.rating.average }}
        {% endif %}
        {{ upsell.product.url }}
        {{ upsell.product.url.absolute }}
        {{ upsell.product.url.path }}
        {% for variantChoiceStep in upsell.product.variantChoiceSteps %}
                {{ variantChoiceStep.headline }}
                {{ variantChoiceStep.inputName }}
                {{ variantChoiceStep.mode }}
                {% if variantChoiceStep.final %} ... {% endif %}
                {% for variantChoice in variantChoiceStep.choices %}
                {% endfor %}
                {% if variantChoiceStep.description %}
                        {{ variantChoiceStep.description }}
                {% endif %}
                {% if variantChoiceStep.infoDescription %}
                        {{ variantChoiceStep.infoDescription }}
                {% endif %}
                {% if variantChoiceStep.messageEmpty %}
                        {{ variantChoiceStep.messageEmpty }}
                {% endif %}
                {% if variantChoiceStep.placeholder %}
                        {{ variantChoiceStep.placeholder }}
                {% endif %}
                {% if variantChoiceStep.icon %}
                {% endif %}
                {% if variantChoiceStep.infoIcon %}
                {% endif %}
                {% if variantChoiceStep.info %}
                {% endif %}
                {% if variantChoiceStep.selectedChoice %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.currentVariants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variants %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {% for variant in upsell.product.variantsWithEnumValueIds %}
                {{ variant.id }}
                {{ variant.name }}
                {{ variant.trackingId }}
                {% if variant.active %} ... {% endif %}
                {% if variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in variant.enumValues %}
                {% endfor %}
                {% for image in variant.images %}
                {% endfor %}
                {% if variant.legacyRel %}
                        {{ variant.legacyRel }}
                {% endif %}
                {% if variant.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.variantType.id }}
        {{ upsell.product.variantType.name }}
        {% for video in upsell.product.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                {% endif %}
        {% endfor %}
        {{ upsell.product.trackingIds }}
        {% if upsell.product.currentSubName %}
                {{ upsell.product.currentSubName }}
        {% endif %}
        {% if upsell.product.nameSuffix %}
                {{ upsell.product.nameSuffix }}
        {% endif %}
        {% if upsell.product.nameSupplier %}
                {{ upsell.product.nameSupplier }}
        {% endif %}
        {% if upsell.product.text %}
                {{ upsell.product.text }}
        {% endif %}
        {% if upsell.product.attribute %}
                {{ upsell.product.attribute.name }}
                {{ upsell.product.attribute.valuesHtml }}
                {% for attributeValueInstance in upsell.product.attribute.values %}
                {% endfor %}
                {% if upsell.product.attribute.description %}
                        {{ upsell.product.attribute.description }}
                {% endif %}
                {% if upsell.product.attribute.group %}
                {% endif %}
                {% if upsell.product.attribute.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.brand %}
                {{ upsell.product.brand.id }}
                {{ upsell.product.brand.name }}
                {% if upsell.product.brand.flagImportant %} ... {% endif %}
                {% for category in upsell.product.brand.categories %}
                {% endfor %}
                {% if upsell.product.brand.code %}
                        {{ upsell.product.brand.code }}
                {% endif %}
                {% if upsell.product.brand.web %}
                        {{ upsell.product.brand.web }}
                {% endif %}
                {% if upsell.product.brand.text %}
                        {{ upsell.product.brand.text }}
                {% endif %}
                {% if upsell.product.brand.image %}
                {% endif %}
                {% if upsell.product.brand.seo %}
                {% endif %}
                {% if upsell.product.brand.contentGrid %}
                        {{ upsell.product.brand.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.imageForEnumValueId %}
                {{ upsell.product.imageForEnumValueId.originalHeight }}
                {{ upsell.product.imageForEnumValueId.originalWidth }}
                {{ upsell.product.imageForEnumValueId.url }}
                {% if upsell.product.imageForEnumValueId.alt %}
                        {{ upsell.product.imageForEnumValueId.alt }}
                {% endif %}
                {% if upsell.product.imageForEnumValueId.text %}
                        {{ upsell.product.imageForEnumValueId.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.image %}
                {{ upsell.product.image.originalHeight }}
                {{ upsell.product.image.originalWidth }}
                {{ upsell.product.image.url }}
                {% if upsell.product.image.alt %}
                        {{ upsell.product.image.alt }}
                {% endif %}
                {% if upsell.product.image.text %}
                        {{ upsell.product.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.product.successor %}
                {{ upsell.product.successor.id }}
                {{ upsell.product.successor.name }}
                {{ upsell.product.successor.trackingId }}
                {{ upsell.product.successor.dateCreated|date('d. m. Y H:i') }}
                {% if upsell.product.successor.active %} ... {% endif %}
                {% if upsell.product.successor.compared %} ... {% endif %}
                {% if upsell.product.successor.differentVariantPrices %} ... {% endif %}
                {% if upsell.product.successor.flagNew %} ... {% endif %}
                {% if upsell.product.successor.flagPromo %} ... {% endif %}
                {% if upsell.product.successor.flagSecondHand %} ... {% endif %}
                {% if upsell.product.successor.flagSellout %} ... {% endif %}
                {% if upsell.product.successor.otherDiscountApplicable %} ... {% endif %}
                {% if upsell.product.successor.soldSeparately %} ... {% endif %}
                {% for attributeInstance in upsell.product.successor.attributes %}
                {% endfor %}
                {% for availableUpsellGroup in upsell.product.successor.availableUpsellGroups %}
                {% endfor %}
                {% for category in upsell.product.successor.categories %}
                {% endfor %}
                {% for category in upsell.product.successor.otherCategories %}
                {% endfor %}
                {% for file in upsell.product.successor.files %}
                {% endfor %}
                {% for image in upsell.product.successor.images %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.images360 %}
                {% endfor %}
                {% for image in upsell.product.successor.currentImages %}
                {% endfor %}
                {% for image in upsell.product.successor.imagesWithoutEnumValue %}
                {% endfor %}
                {% for image in upsell.product.successor.otherImages %}
                {% endfor %}
                {% for label in upsell.product.successor.labels %}
                {% endfor %}
                {% for productEnumValue in upsell.product.successor.enumValues %}
                {% endfor %}
                {% for product in upsell.product.successor.packTemplateProducts %}
                {% endfor %}
                {% for variantChoiceStep in upsell.product.successor.variantChoiceSteps %}
                {% endfor %}
                {% for variant in upsell.product.successor.currentVariants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variants %}
                {% endfor %}
                {% for variant in upsell.product.successor.variantsWithEnumValueIds %}
                {% endfor %}
                {% for video in upsell.product.successor.videos %}
                {% endfor %}
                {{ upsell.product.successor.trackingIds }}
                {% if upsell.product.successor.currentSubName %}
                        {{ upsell.product.successor.currentSubName }}
                {% endif %}
                {% if upsell.product.successor.nameSuffix %}
                        {{ upsell.product.successor.nameSuffix }}
                {% endif %}
                {% if upsell.product.successor.nameSupplier %}
                        {{ upsell.product.successor.nameSupplier }}
                {% endif %}
                {% if upsell.product.successor.text %}
                        {{ upsell.product.successor.text }}
                {% endif %}
                {% if upsell.product.successor.attribute %}
                {% endif %}
                {% if upsell.product.successor.brand %}
                {% endif %}
                {% if upsell.product.successor.imageForEnumValueId %}
                {% endif %}
                {% if upsell.product.successor.image %}
                {% endif %}
                {% if upsell.product.successor.seo %}
                {% endif %}
                {% if upsell.product.successor.supplier %}
                {% endif %}
                {% if upsell.product.successor.unit %}
                {% endif %}
                {% if upsell.product.successor.variant %}
                {% endif %}
                {% if upsell.product.successor.warranty %}
                {% endif %}
                {% if upsell.product.successor.contentGrid %}
                        {{ upsell.product.successor.contentGrid }}
                {% endif %}
        {% endif %}
        {% if upsell.product.seo %}
                {% if upsell.product.seo.description %}
                        {{ upsell.product.seo.description }}
                {% endif %}
                {% if upsell.product.seo.keywords %}
                        {{ upsell.product.seo.keywords }}
                {% endif %}
                {% if upsell.product.seo.title %}
                        {{ upsell.product.seo.title }}
                {% endif %}
        {% endif %}
        {% if upsell.product.supplier %}
                {{ upsell.product.supplier.id }}
                {{ upsell.product.supplier.name }}
        {% endif %}
        {% if upsell.product.unit %}
                {{ upsell.product.unit.name }}
        {% endif %}
        {% if upsell.product.variant %}
                {{ upsell.product.variant.id }}
                {{ upsell.product.variant.name }}
                {{ upsell.product.variant.trackingId }}
                {% if upsell.product.variant.active %} ... {% endif %}
                {% if upsell.product.variant.selected %} ... {% endif %}
                {% for availableUpsellGroup in upsell.product.variant.availableUpsellGroups %}
                {% endfor %}
                {% for enumValue in upsell.product.variant.enumValues %}
                {% endfor %}
                {% for image in upsell.product.variant.images %}
                {% endfor %}
                {% if upsell.product.variant.legacyRel %}
                        {{ upsell.product.variant.legacyRel }}
                {% endif %}
                {% if upsell.product.variant.image %}
                {% endif %}
        {% endif %}
        {% if upsell.product.warranty %}
                {{ upsell.product.warranty.months }}
        {% endif %}
        {% if upsell.product.contentGrid %}
                {{ upsell.product.contentGrid }}
        {% endif %}
        {{ upsell.group.id }}
        {{ upsell.group.requiredNoteMaximumLength }}
        {{ upsell.group.name }}
        {% if upsell.group.requiredNote %} ... {% endif %}
        {% if upsell.group.requiredUpload %} ... {% endif %}
        {% if upsell.group.singleSelection %} ... {% endif %}
        {% if upsell.group.text %}
                {{ upsell.group.text }}
        {% endif %}
        {% if upsell.group.uploadInput %}
                {{ upsell.group.uploadInput }}
        {% endif %}
        {% if upsell.code %}
                {{ upsell.code }}
        {% endif %}
        {% if upsell.vatRate %}
                {{ upsell.vatRate }}
        {% endif %}
        {% if upsell.image %}
                {{ upsell.image.originalHeight }}
                {{ upsell.image.originalWidth }}
                {{ upsell.image.url }}
                {% if upsell.image.alt %}
                        {{ upsell.image.alt }}
                {% endif %}
                {% if upsell.image.text %}
                        {{ upsell.image.text }}
                {% endif %}
        {% endif %}
        {% if upsell.unit %}
                {{ upsell.unit.name }}
        {% endif %}
{% endfor %}
{{ variant.url }}
{{ variant.url.absolute }}
{{ variant.url.path }}

{% if variant.legacyRel %}
        {{ variant.legacyRel }}
{% endif %}

{% if variant.image %}
        {{ variant.image.originalHeight }}
        {{ variant.image.originalWidth }}
        {{ variant.image.url }}
        {% if variant.image.alt %}
                {{ variant.image.alt }}
        {% endif %}
        {% if variant.image.text %}
                {{ variant.image.text }}
        {% endif %}
{% endif %}

VariantChoice

Attributy objektu VariantChoice

Název

Typ

Popis

inputValue

string

Hodnota pro input výběru

name

string

Název hodnoty

selected

bool

Je hodnota vybraná? (pro input checked)

color

string | null

Hexa kód barvy (včetně #)

description

string | null

Popis hodnoty

availability

Availability | null

Dostupnost

bundle

Bundle | null

Komplet

icon

Image | null

Obrázek ikonky hodnoty

image

Image | null

Fotka

price

Price | null

Cena položky

Příklady:

{{ variantchoice.inputValue }}
{{ variantchoice.name }}
{% if variantchoice.selected %} ... {% endif %}

{% if variantchoice.color %}
        {{ variantchoice.color }}
{% endif %}

{% if variantchoice.description %}
        {{ variantchoice.description }}
{% endif %}

{% if variantchoice.availability %}
        {{ variantchoice.availability.availableAmount }}
        {{ variantchoice.availability.availableAmountInShowroom }}
        {{ variantchoice.availability.availableAmountInStockroom }}
        {{ variantchoice.availability.availableAmountInStorageCenter }}
        {{ variantchoice.availability.hours }}
        {{ variantchoice.availability.totalAmount }}
        {% if variantchoice.availability.inShowroom %} ... {% endif %}
        {% if variantchoice.availability.inStock %} ... {% endif %}
        {% if variantchoice.availability.preorder %} ... {% endif %}
        {% if variantchoice.availability.watchdogSupported %} ... {% endif %}
        {% for deliveryOption in variantchoice.availability.deliveryOptions %}
                {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
                {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                {{ deliveryOption.transport.inputId }}
                {{ deliveryOption.transport.name }}
                {{ deliveryOption.transport.vatRate }}
                {% if deliveryOption.transport.branchRequired %} ... {% endif %}
                {% if deliveryOption.transport.currier %} ... {% endif %}
                {% if deliveryOption.transport.dateGuaranteed %} ... {% endif %}
                {% if deliveryOption.transport.deliveryAddressRequired %} ... {% endif %}
                {% if deliveryOption.transport.deliveryToAddress %} ... {% endif %}
                {% if deliveryOption.transport.free %} ... {% endif %}
                {% if deliveryOption.transport.pickup %} ... {% endif %}
                {% if deliveryOption.transport.selected %} ... {% endif %}
                {% if deliveryOption.transport.text %}
                        {{ deliveryOption.transport.text }}
                {% endif %}
                {% if deliveryOption.transport.branch %}
                {% endif %}
                {% if deliveryOption.transport.carrier %}
                {% endif %}
                {% if deliveryOption.transport.deliveryDate %}
                {% endif %}
                {% if deliveryOption.transport.packageType %}
                {% endif %}
                {% if deliveryOption.transport.image %}
                {% endif %}
                {% if deliveryOption.timeDelivered %}
                        {{ deliveryOption.timeDelivered }}
                {% endif %}
        {% endfor %}
        {% if variantchoice.availability.text %}
                {{ variantchoice.availability.text }}
        {% endif %}
        {% if variantchoice.availability.dateExpected %}
                {{ variantchoice.availability.dateExpected|date('d. m. Y H:i') }}
        {% endif %}
        {% if variantchoice.availability.deliveryOption %}
                {{ variantchoice.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                {{ variantchoice.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
                {{ variantchoice.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                {{ variantchoice.availability.deliveryOption.transport.inputId }}
                {{ variantchoice.availability.deliveryOption.transport.name }}
                {{ variantchoice.availability.deliveryOption.transport.vatRate }}
                {% if variantchoice.availability.deliveryOption.transport.branchRequired %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.currier %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.dateGuaranteed %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.deliveryAddressRequired %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.deliveryToAddress %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.free %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.pickup %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.selected %} ... {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.text %}
                        {{ variantchoice.availability.deliveryOption.transport.text }}
                {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.branch %}
                {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.carrier %}
                {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.deliveryDate %}
                {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.packageType %}
                {% endif %}
                {% if variantchoice.availability.deliveryOption.transport.image %}
                {% endif %}
                {% if variantchoice.availability.deliveryOption.timeDelivered %}
                        {{ variantchoice.availability.deliveryOption.timeDelivered }}
                {% endif %}
        {% endif %}
{% endif %}

{% if variantchoice.bundle %}
        {% if variantchoice.bundle.multiPack %} ... {% endif %}
        {% if variantchoice.bundle.price %}
                {{ variantchoice.bundle.price.vatRate }}
                {{ variantchoice.bundle.price.current.currency }}
                {{ variantchoice.bundle.price.current.formatted }}
                {{ variantchoice.bundle.price.current.value }}
                {% if variantchoice.bundle.price.discountPercent %}
                        {{ variantchoice.bundle.price.discountPercent }}
                {% endif %}
                {% if variantchoice.bundle.price.discountValidTo %}
                        {{ variantchoice.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variantchoice.bundle.price.beforeDiscount %}
                        {{ variantchoice.bundle.price.beforeDiscount.currency }}
                        {{ variantchoice.bundle.price.beforeDiscount.formatted }}
                        {{ variantchoice.bundle.price.beforeDiscount.value }}
                {% endif %}
                {% if variantchoice.bundle.price.discount %}
                        {{ variantchoice.bundle.price.discount.currency }}
                        {{ variantchoice.bundle.price.discount.formatted }}
                        {{ variantchoice.bundle.price.discount.value }}
                {% endif %}
        {% endif %}
{% endif %}

{% if variantchoice.icon %}
        {{ variantchoice.icon.originalHeight }}
        {{ variantchoice.icon.originalWidth }}
        {{ variantchoice.icon.url }}
        {% if variantchoice.icon.alt %}
                {{ variantchoice.icon.alt }}
        {% endif %}
        {% if variantchoice.icon.text %}
                {{ variantchoice.icon.text }}
        {% endif %}
{% endif %}

{% if variantchoice.image %}
        {{ variantchoice.image.originalHeight }}
        {{ variantchoice.image.originalWidth }}
        {{ variantchoice.image.url }}
        {% if variantchoice.image.alt %}
                {{ variantchoice.image.alt }}
        {% endif %}
        {% if variantchoice.image.text %}
                {{ variantchoice.image.text }}
        {% endif %}
{% endif %}

{% if variantchoice.price %}
        {{ variantchoice.price.vatRate }}
        {{ variantchoice.price.current.currency }}
        {{ variantchoice.price.current.formatted }}
        {{ variantchoice.price.current.value }}
        {% if variantchoice.price.discountPercent %}
                {{ variantchoice.price.discountPercent }}
        {% endif %}
        {% if variantchoice.price.discountValidTo %}
                {{ variantchoice.price.discountValidTo|date('d. m. Y H:i') }}
        {% endif %}
        {% if variantchoice.price.beforeDiscount %}
                {{ variantchoice.price.beforeDiscount.currency }}
                {{ variantchoice.price.beforeDiscount.formatted }}
                {{ variantchoice.price.beforeDiscount.value }}
        {% endif %}
        {% if variantchoice.price.discount %}
                {{ variantchoice.price.discount.currency }}
                {{ variantchoice.price.discount.formatted }}
                {{ variantchoice.price.discount.value }}
        {% endif %}
{% endif %}

VariantChoiceStep

Attributy objektu VariantChoiceStep

Název

Typ

Popis

headline

string

Nadpis

inputName

string

Název inputu s výběrem

mode

string

Kód vzhledu výběru

final

bool

Poslední krok výběru? (tzn. po výběru hodnoty už se nenačte další)

choices

VariantChoice[] | array

Dostupné hodnoty pro výběr

description

string | null

Popis výběru

infoDescription

string | null

Popis k odkazu na více informací

messageEmpty

string | null

Chybová hláška při nevybrání hodnoty

placeholder

string | null

První „placeholder“ položka pro roletku

icon

Image | null

Ikona

infoIcon

Image | null

Ikona

info

TextPage | null

Textová stránka s dodatečnými informacemi

selectedChoice

VariantChoice | null

Vybraná volba

Příklady:

{{ variantchoicestep.headline }}
{{ variantchoicestep.inputName }}
{{ variantchoicestep.mode }}
{% if variantchoicestep.final %} ... {% endif %}

{% for variantChoice in variantchoicestep.choices %}
        {{ variantChoice.inputValue }}
        {{ variantChoice.name }}
        {% if variantChoice.selected %} ... {% endif %}
        {% if variantChoice.color %}
                {{ variantChoice.color }}
        {% endif %}
        {% if variantChoice.description %}
                {{ variantChoice.description }}
        {% endif %}
        {% if variantChoice.availability %}
                {{ variantChoice.availability.availableAmount }}
                {{ variantChoice.availability.availableAmountInShowroom }}
                {{ variantChoice.availability.availableAmountInStockroom }}
                {{ variantChoice.availability.availableAmountInStorageCenter }}
                {{ variantChoice.availability.hours }}
                {{ variantChoice.availability.totalAmount }}
                {% if variantChoice.availability.inShowroom %} ... {% endif %}
                {% if variantChoice.availability.inStock %} ... {% endif %}
                {% if variantChoice.availability.preorder %} ... {% endif %}
                {% if variantChoice.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in variantChoice.availability.deliveryOptions %}
                        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
                        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                        {% if deliveryOption.timeDelivered %}
                                {{ deliveryOption.timeDelivered }}
                        {% endif %}
                {% endfor %}
                {% if variantChoice.availability.text %}
                        {{ variantChoice.availability.text }}
                {% endif %}
                {% if variantChoice.availability.dateExpected %}
                        {{ variantChoice.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if variantChoice.availability.deliveryOption %}
                        {{ variantChoice.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                        {{ variantChoice.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
                        {{ variantChoice.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                        {% if variantChoice.availability.deliveryOption.timeDelivered %}
                                {{ variantChoice.availability.deliveryOption.timeDelivered }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if variantChoice.bundle %}
                {% if variantChoice.bundle.multiPack %} ... {% endif %}
                {% if variantChoice.bundle.price %}
                        {{ variantChoice.bundle.price.vatRate }}
                        {% if variantChoice.bundle.price.discountPercent %}
                                {{ variantChoice.bundle.price.discountPercent }}
                        {% endif %}
                        {% if variantChoice.bundle.price.discountValidTo %}
                                {{ variantChoice.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if variantChoice.bundle.price.beforeDiscount %}
                        {% endif %}
                        {% if variantChoice.bundle.price.discount %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if variantChoice.icon %}
                {{ variantChoice.icon.originalHeight }}
                {{ variantChoice.icon.originalWidth }}
                {{ variantChoice.icon.url }}
                {% if variantChoice.icon.alt %}
                        {{ variantChoice.icon.alt }}
                {% endif %}
                {% if variantChoice.icon.text %}
                        {{ variantChoice.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantChoice.image %}
                {{ variantChoice.image.originalHeight }}
                {{ variantChoice.image.originalWidth }}
                {{ variantChoice.image.url }}
                {% if variantChoice.image.alt %}
                        {{ variantChoice.image.alt }}
                {% endif %}
                {% if variantChoice.image.text %}
                        {{ variantChoice.image.text }}
                {% endif %}
        {% endif %}
        {% if variantChoice.price %}
                {{ variantChoice.price.vatRate }}
                {{ variantChoice.price.current.currency }}
                {{ variantChoice.price.current.formatted }}
                {{ variantChoice.price.current.value }}
                {% if variantChoice.price.discountPercent %}
                        {{ variantChoice.price.discountPercent }}
                {% endif %}
                {% if variantChoice.price.discountValidTo %}
                        {{ variantChoice.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variantChoice.price.beforeDiscount %}
                        {{ variantChoice.price.beforeDiscount.currency }}
                        {{ variantChoice.price.beforeDiscount.formatted }}
                        {{ variantChoice.price.beforeDiscount.value }}
                {% endif %}
                {% if variantChoice.price.discount %}
                        {{ variantChoice.price.discount.currency }}
                        {{ variantChoice.price.discount.formatted }}
                        {{ variantChoice.price.discount.value }}
                {% endif %}
        {% endif %}
{% endfor %}

{% if variantchoicestep.description %}
        {{ variantchoicestep.description }}
{% endif %}

{% if variantchoicestep.infoDescription %}
        {{ variantchoicestep.infoDescription }}
{% endif %}

{% if variantchoicestep.messageEmpty %}
        {{ variantchoicestep.messageEmpty }}
{% endif %}

{% if variantchoicestep.placeholder %}
        {{ variantchoicestep.placeholder }}
{% endif %}

{% if variantchoicestep.icon %}
        {{ variantchoicestep.icon.originalHeight }}
        {{ variantchoicestep.icon.originalWidth }}
        {{ variantchoicestep.icon.url }}
        {% if variantchoicestep.icon.alt %}
                {{ variantchoicestep.icon.alt }}
        {% endif %}
        {% if variantchoicestep.icon.text %}
                {{ variantchoicestep.icon.text }}
        {% endif %}
{% endif %}

{% if variantchoicestep.infoIcon %}
        {{ variantchoicestep.infoIcon.originalHeight }}
        {{ variantchoicestep.infoIcon.originalWidth }}
        {{ variantchoicestep.infoIcon.url }}
        {% if variantchoicestep.infoIcon.alt %}
                {{ variantchoicestep.infoIcon.alt }}
        {% endif %}
        {% if variantchoicestep.infoIcon.text %}
                {{ variantchoicestep.infoIcon.text }}
        {% endif %}
{% endif %}

{% if variantchoicestep.info %}
        {{ variantchoicestep.info.id }}
        {{ variantchoicestep.info.name }}
        {% for file in variantchoicestep.info.files %}
                {{ file.bytes }}
                {{ file.url }}
                {% if file.usage.archive %} ... {% endif %}
                {% if file.usage.graphic %} ... {% endif %}
                {% if file.usage.manual %} ... {% endif %}
                {% if file.usage.other %} ... {% endif %}
                {% if file.usage.sound %} ... {% endif %}
                {% if file.usage.specification %} ... {% endif %}
                {% if file.mime %}
                        {{ file.mime }}
                {% endif %}
                {% if file.name %}
                        {{ file.name }}
                {% endif %}
        {% endfor %}
        {% for image in variantchoicestep.info.images %}
                {{ image.originalHeight }}
                {{ image.originalWidth }}
                {{ image.url }}
                {% if image.alt %}
                        {{ image.alt }}
                {% endif %}
                {% if image.text %}
                        {{ image.text }}
                {% endif %}
        {% endfor %}
        {% for textPage in variantchoicestep.info.subPages %}
                {{ textPage.id }}
                {{ textPage.name }}
                {% for file in textPage.files %}
                        {{ file.bytes }}
                        {{ file.url }}
                        {% if file.mime %}
                                {{ file.mime }}
                        {% endif %}
                        {% if file.name %}
                                {{ file.name }}
                        {% endif %}
                {% endfor %}
                {% for image in textPage.images %}
                        {{ image.originalHeight }}
                        {{ image.originalWidth }}
                        {{ image.url }}
                        {% if image.alt %}
                                {{ image.alt }}
                        {% endif %}
                        {% if image.text %}
                                {{ image.text }}
                        {% endif %}
                {% endfor %}
                {{ textPage.url }}
                {{ textPage.url.absolute }}
                {{ textPage.url.path }}
                {% for video in textPage.videos %}
                        {{ video.embeddedUrl }}
                        {% if video.name %}
                                {{ video.name }}
                        {% endif %}
                        {% if video.image %}
                        {% endif %}
                {% endfor %}
                {% if textPage.code %}
                        {{ textPage.code }}
                {% endif %}
                {% if textPage.text %}
                        {{ textPage.text }}
                {% endif %}
                {% if textPage.image %}
                        {{ textPage.image.originalHeight }}
                        {{ textPage.image.originalWidth }}
                        {{ textPage.image.url }}
                        {% if textPage.image.alt %}
                                {{ textPage.image.alt }}
                        {% endif %}
                        {% if textPage.image.text %}
                                {{ textPage.image.text }}
                        {% endif %}
                {% endif %}
                {% if textPage.contentGrid %}
                        {{ textPage.contentGrid }}
                {% endif %}
        {% endfor %}
        {{ variantchoicestep.info.url }}
        {{ variantchoicestep.info.url.absolute }}
        {{ variantchoicestep.info.url.path }}
        {% for video in variantchoicestep.info.videos %}
                {{ video.embeddedUrl }}
                {% if video.name %}
                        {{ video.name }}
                {% endif %}
                {% if video.image %}
                        {{ video.image.originalHeight }}
                        {{ video.image.originalWidth }}
                        {{ video.image.url }}
                        {% if video.image.alt %}
                                {{ video.image.alt }}
                        {% endif %}
                        {% if video.image.text %}
                                {{ video.image.text }}
                        {% endif %}
                {% endif %}
        {% endfor %}
        {% if variantchoicestep.info.code %}
                {{ variantchoicestep.info.code }}
        {% endif %}
        {% if variantchoicestep.info.text %}
                {{ variantchoicestep.info.text }}
        {% endif %}
        {% if variantchoicestep.info.image %}
                {{ variantchoicestep.info.image.originalHeight }}
                {{ variantchoicestep.info.image.originalWidth }}
                {{ variantchoicestep.info.image.url }}
                {% if variantchoicestep.info.image.alt %}
                        {{ variantchoicestep.info.image.alt }}
                {% endif %}
                {% if variantchoicestep.info.image.text %}
                        {{ variantchoicestep.info.image.text }}
                {% endif %}
        {% endif %}
        {% if variantchoicestep.info.contentGrid %}
                {{ variantchoicestep.info.contentGrid }}
        {% endif %}
{% endif %}

{% if variantchoicestep.selectedChoice %}
        {{ variantchoicestep.selectedChoice.inputValue }}
        {{ variantchoicestep.selectedChoice.name }}
        {% if variantchoicestep.selectedChoice.selected %} ... {% endif %}
        {% if variantchoicestep.selectedChoice.color %}
                {{ variantchoicestep.selectedChoice.color }}
        {% endif %}
        {% if variantchoicestep.selectedChoice.description %}
                {{ variantchoicestep.selectedChoice.description }}
        {% endif %}
        {% if variantchoicestep.selectedChoice.availability %}
                {{ variantchoicestep.selectedChoice.availability.availableAmount }}
                {{ variantchoicestep.selectedChoice.availability.availableAmountInShowroom }}
                {{ variantchoicestep.selectedChoice.availability.availableAmountInStockroom }}
                {{ variantchoicestep.selectedChoice.availability.availableAmountInStorageCenter }}
                {{ variantchoicestep.selectedChoice.availability.hours }}
                {{ variantchoicestep.selectedChoice.availability.totalAmount }}
                {% if variantchoicestep.selectedChoice.availability.inShowroom %} ... {% endif %}
                {% if variantchoicestep.selectedChoice.availability.inStock %} ... {% endif %}
                {% if variantchoicestep.selectedChoice.availability.preorder %} ... {% endif %}
                {% if variantchoicestep.selectedChoice.availability.watchdogSupported %} ... {% endif %}
                {% for deliveryOption in variantchoicestep.selectedChoice.availability.deliveryOptions %}
                        {{ deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                        {{ deliveryOption.dateSent|date('d. m. Y H:i') }}
                        {{ deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                        {% if deliveryOption.timeDelivered %}
                                {{ deliveryOption.timeDelivered }}
                        {% endif %}
                {% endfor %}
                {% if variantchoicestep.selectedChoice.availability.text %}
                        {{ variantchoicestep.selectedChoice.availability.text }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.availability.dateExpected %}
                        {{ variantchoicestep.selectedChoice.availability.dateExpected|date('d. m. Y H:i') }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.availability.deliveryOption %}
                        {{ variantchoicestep.selectedChoice.availability.deliveryOption.dateDelivered|date('d. m. Y H:i') }}
                        {{ variantchoicestep.selectedChoice.availability.deliveryOption.dateSent|date('d. m. Y H:i') }}
                        {{ variantchoicestep.selectedChoice.availability.deliveryOption.orderDeadline|date('d. m. Y H:i') }}
                        {% if variantchoicestep.selectedChoice.availability.deliveryOption.timeDelivered %}
                                {{ variantchoicestep.selectedChoice.availability.deliveryOption.timeDelivered }}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if variantchoicestep.selectedChoice.bundle %}
                {% if variantchoicestep.selectedChoice.bundle.multiPack %} ... {% endif %}
                {% if variantchoicestep.selectedChoice.bundle.price %}
                        {{ variantchoicestep.selectedChoice.bundle.price.vatRate }}
                        {% if variantchoicestep.selectedChoice.bundle.price.discountPercent %}
                                {{ variantchoicestep.selectedChoice.bundle.price.discountPercent }}
                        {% endif %}
                        {% if variantchoicestep.selectedChoice.bundle.price.discountValidTo %}
                                {{ variantchoicestep.selectedChoice.bundle.price.discountValidTo|date('d. m. Y H:i') }}
                        {% endif %}
                        {% if variantchoicestep.selectedChoice.bundle.price.beforeDiscount %}
                        {% endif %}
                        {% if variantchoicestep.selectedChoice.bundle.price.discount %}
                        {% endif %}
                {% endif %}
        {% endif %}
        {% if variantchoicestep.selectedChoice.icon %}
                {{ variantchoicestep.selectedChoice.icon.originalHeight }}
                {{ variantchoicestep.selectedChoice.icon.originalWidth }}
                {{ variantchoicestep.selectedChoice.icon.url }}
                {% if variantchoicestep.selectedChoice.icon.alt %}
                        {{ variantchoicestep.selectedChoice.icon.alt }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.icon.text %}
                        {{ variantchoicestep.selectedChoice.icon.text }}
                {% endif %}
        {% endif %}
        {% if variantchoicestep.selectedChoice.image %}
                {{ variantchoicestep.selectedChoice.image.originalHeight }}
                {{ variantchoicestep.selectedChoice.image.originalWidth }}
                {{ variantchoicestep.selectedChoice.image.url }}
                {% if variantchoicestep.selectedChoice.image.alt %}
                        {{ variantchoicestep.selectedChoice.image.alt }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.image.text %}
                        {{ variantchoicestep.selectedChoice.image.text }}
                {% endif %}
        {% endif %}
        {% if variantchoicestep.selectedChoice.price %}
                {{ variantchoicestep.selectedChoice.price.vatRate }}
                {{ variantchoicestep.selectedChoice.price.current.currency }}
                {{ variantchoicestep.selectedChoice.price.current.formatted }}
                {{ variantchoicestep.selectedChoice.price.current.value }}
                {% if variantchoicestep.selectedChoice.price.discountPercent %}
                        {{ variantchoicestep.selectedChoice.price.discountPercent }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.price.discountValidTo %}
                        {{ variantchoicestep.selectedChoice.price.discountValidTo|date('d. m. Y H:i') }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.price.beforeDiscount %}
                        {{ variantchoicestep.selectedChoice.price.beforeDiscount.currency }}
                        {{ variantchoicestep.selectedChoice.price.beforeDiscount.formatted }}
                        {{ variantchoicestep.selectedChoice.price.beforeDiscount.value }}
                {% endif %}
                {% if variantchoicestep.selectedChoice.price.discount %}
                        {{ variantchoicestep.selectedChoice.price.discount.currency }}
                        {{ variantchoicestep.selectedChoice.price.discount.formatted }}
                        {{ variantchoicestep.selectedChoice.price.discount.value }}
                {% endif %}
        {% endif %}
{% endif %}

VariantType

Attributy objektu VariantType

Název

Typ

Popis

id

int

Id

name

string

Název

Příklady:

{{ varianttype.id }}
{{ varianttype.name }}

Video

Videa pokud možno nikdy nevypisujeme přes <video src=, ale vždy přes pomocný tag <i:video, který rovnou řeší retina displeje a responzivitu.

Attributy objektu Video

Název

Typ

Popis

embeddedUrl

string

URL pro zobrazení přehraváče (pouze pro Fancybox, jinak raději použít i:video)

name

string | null

Název

image

Image | null

Hlavní obrázek

Příklady:

{{ video.embeddedUrl }}

{% if video.name %}
        {{ video.name }}
{% endif %}

{% if video.image %}
        {{ video.image.originalHeight }}
        {{ video.image.originalWidth }}
        {{ video.image.url }}
        {% if video.image.alt %}
                {{ video.image.alt }}
        {% endif %}
        {% if video.image.text %}
                {{ video.image.text }}
        {% endif %}
{% endif %}

Visit

Attributy objektu Visit

Název

Typ

Popis

Příklad výstupu

perPage

int

Počet záznamů na stránku

20

country

string

Kód země

cz

currency

string

Kód měny

CZK

deliveryCountry

string

Kód země doručení

cz

language

string

Kód jazyka

cz

android

bool

Používá návštěvník Android?

bot

bool

Je návštěvník bot?

true

iOS

bool

Používá návštěvník iOS?

mobileDevice

bool

Je návštěvník na mobilním zařízení?

true

Příklady:

{{ visit.perPage }}
{{ visit.country }}
{{ visit.currency }}
{{ visit.deliveryCountry }}
{{ visit.language }}
{% if visit.android %} ... {% endif %}
{% if visit.bot %} ... {% endif %}
{% if visit.iOS %} ... {% endif %}
{% if visit.mobileDevice %} ... {% endif %}

Voucher/GiftVoucher

Attributy objektu Voucher/GiftVoucher

Název

Typ

Popis

code

string

Kód

name

string

Název slevového kódu

validFrom

datetime

Datum začátku platnost

validTo

datetime

Datum konce platnosti

value

PriceValue

Hodnota poukazu

Příklady:

{{ giftvoucher.code }}
{{ giftvoucher.name }}
{{ giftvoucher.validFrom|date('d. m. Y H:i') }}
{{ giftvoucher.validTo|date('d. m. Y H:i') }}
{{ giftvoucher.value.currency }}
{{ giftvoucher.value.formatted }}

Warranty

Attributy objektu Warranty

Název

Typ

Popis

months

int

Počet měsíců

Příklady:

{{ warranty.months }}

WorkingHours

Attributy objektu WorkingHours

Název

Typ

Popis

nextClose

datetime

Datum a čas, kdy příště zavírá

nextOpen

datetime

Datum a čas, kdy příště otevírá

open

bool

Je právě teď otevřeno?

forNextDays

DayBlock[]

Otevírací doba pro nejbližší dny

week

array

Otevírací doba pro týden, dny po sobě jsou spojené do jednoho záznamu

weekFull

array

Otevírací doba pro celý týden, každý den samostatně

specialCases

array

Výjimky v otevírací době

Příklady:

{{ workinghours.nextClose|date('d. m. Y H:i') }}
{{ workinghours.nextOpen|date('d. m. Y H:i') }}
{% if workinghours.open %} ... {% endif %}

{% for dayBlock in workinghours.forNextDays %}
        {{ dayBlock.dayName }}
        {{ dayBlock.dayNameShort }}
        {{ dayBlock.date|date('d. m. Y H:i') }}
        {% for timeBlock in dayBlock.timeBlocks %}
                {{ timeBlock.timeBlocks }}
                {{ timeBlock.end }}
                {{ timeBlock.separator }}
                {{ timeBlock.start }}
        {% endfor %}
{% endfor %}
{{ workinghours.week }}
{{ workinghours.weekFull }}
{{ workinghours.specialCases }}