{% extends 'layout.html.twig' %} {% set seo_title = 'Search Results' %} {% set body_class = 'search-results' %} {% block content %}

Search Results

{% set count = (swatches|length) %} {% if count == 0 %}
No swatches match your search criteria
{% elseif count == 1 %}
1 swatch matches your search criteria
{% else %}
{{ count }} swatches match your search criteria
{% endif %}
 |  View
{{ form_start(form, {'attr': {'class': 'sidebar'}}) }}

Filter Swatches

{% for field in form.children %}
{% if field.vars.label == "Colour" and not is_texstyle_au() %} Color {% else %} {{ field.vars.label }} {% endif %}
{% if field.children %}
{% for child in field.children %} {{ form_widget(child) }} {% endfor %}
{% else %}
{{ form_widget(field) }}
{% endif %}
{% endfor %} {{ form_end(form) }}
{% endblock %}