{% if attribute_groups %}
% for attribute_group in attribute_groups %}
{% if attribute_group.attribute_group_id == 10 %}
{% for attribute in attribute_group.attribute %}
<span>{{ attribute.name }}</span> {{ attribute.text }}<br />
{% endfor %}
% endif %}
{% endfor %}
{% endif %}
{% if attribute_groups %}
{% for attribute_group in attribute_groups %}
{% if attribute_group.attribute_group_id == 10 %}
{% for attribute in attribute_group.attribute|slice(0,3) %}
<span>{{ attribute.name }}</span> {{ attribute.text }}<br />
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}