{% load i18n %}

{% trans 'Property Groups' %}

{% csrf_token %}
{% if display_configurables %}
{% csrf_token %}

{% trans 'Default values' %}

{% for property_group in configurables %}
{{ property_group.name }} {% for property in property_group.properties %}
{% if property.display_text_field %} {% endif %} {% if property.display_select_field %}
{{ property.title }}:
{% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% if display_filterables %}
{% csrf_token %}

{% trans "Filter values" %}

{% for property_group in filterables %}
{{ property_group.name }} {% for property in property_group.properties %}
{% if property.display_text_field %} {% endif %} {% if property.display_select_field %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% if display_displayables %}
{% csrf_token %}

{% trans "Displayed values" %}

{% for property_group in displayables %}
{{ property_group.name }} {% for property in property_group.properties %}
{% if property.display_text_field %} {% endif %} {% if property.display_select_field %}
{{ property.name }}:
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}