{% load i18n %}

{% trans 'Property Groups' %}

{% csrf_token %}

{% trans 'Local properties' %} {% trans 'Edit' %}

{{ property_form.name }}
{% for property in local_properties %}
{{ property.name }}
{% if not forloop.first %} {% trans 'Up' %} {% endif %} {% if not forloop.last %} {% trans 'Down' %} {% endif %} delete
{% for option in property.options.all %}
{{ option.name }} delete
{% endfor %}
{{ property_option_form.name }}
{% endfor %}

{% trans 'Variants' %}

{% for property in all_properties %} {% endfor %} {% for property in all_properties %} {% endfor %}
{% trans 'Slug' %} {% trans 'Name' %} {% trans 'Price' %} {{ property.name }}
{{ variant_simple_form.slug }} {{ variant_simple_form.name }} {{ variant_simple_form.price }}
{% if variants %}
{% for property in all_properties %} {% endfor %} {% for variant in variants %} {% for property in variant.properties %} {% endfor %} {% endfor %}
{% trans 'Pos.' %} {% trans 'Active' %} {% trans 'URL' %} {% trans 'SKU' %} {% trans 'Name' %} {{ property.name }} {% trans 'Price' %} {% trans 'Default' %}
Edit

{% trans 'Display type' %}

{{ display_type_form.variants_display_type.label_tag }}:
{{ display_type_form.variants_display_type }}
{% endif %}