{% load i18n %}

{% trans 'Property Groups' %}

{% if display_configurables %}

{% trans 'Default Values' %}

{% for property_group in configurables %}
{% if property_group.properties %}

{{ property_group.name }}

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

{% trans "Filter Values" %}

{% for property_group in filterables %}
{% if property_group.properties %}

{{ property_group.name }}

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

{% trans "Displayed Values" %}

{% for property_group in displayables %}
{% if property_group.properties %}

{{ property_group.name }}

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