{% load i18n %}

{% trans 'Property Groups' %}

{% trans 'Local properties' %}

{{property_form.name}}
{% for property in local_properties %} {% if not forloop.first %} {% trans 'Up' %} {% endif %} {% if not forloop.last %} {% trans 'Down' %} {% endif %} delete {{property.name}}
{% for option in property.options.all %}
delete {{option.name}}
{% 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' %}
Edit

{% trans 'Display type' %}

{{display_type_form.as_p}}
{% endif %}