{% if date_time_now is not defined %}
{% set date_time_now = model.format_date(datetime.now()) %}
{% endif %}
{% if is_blank_row %}
{% include 'components/store/_preview_DDL_product_category.html' %}
{% include 'components/store/_preview_DDL_product.html' %}
{% include 'components/store/_preview_product_permutation_variations.html' %}
{% include 'components/store/_preview_DDL_currency.html' %}
{% include 'components/store/_preview_DDL_stock_item_storage_location.html' %}
{% else %}
{% include 'components/store/_preview_DDL_product_category.html' %}
{% include 'components/store/_preview_DDL_product.html' %}
{% set variation_tree = permutation.variation_tree %}
{% set str_ids_variations = variation_tree.to_variation_id_pairs_str() if not (variation_tree is none) else '' %}
{% include 'components/store/_preview_product_permutation_variations.html' %}
{% set currency = stock_item.currency_cost %}
{% include 'components/store/_preview_DDL_currency.html' %}
{% set storage_location = stock_item.storage_location %}
{% include 'components/store/_preview_DDL_stock_item_storage_location.html' %}