{% load form_helpers %} {% load helpers %}
Advanced Search
{% for field in filter_form.hidden_fields %} {{ field }} {% endfor %} {% if filter_form.field_groups %} {% for group in filter_form.field_groups %}
{% for name in group %} {% with field=filter_form|get_item:name %} {% if field|widget_type == 'checkboxinput' %}
{{ field }}
{% else %}
{{ field }}
{% endif %} {% endwith %} {% endfor %}
{% endfor %} {% else %} {% for field in filter_form.visible_fields %}
{% if field|widget_type == 'checkboxinput' %}
{{ field }}
{% else %}
{{ field }}
{% endif %}
{% endfor %} {% endif %}