Skip to content

Commit

Permalink
🚧 [#3018] Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jiromaykin committed Feb 20, 2025
1 parent 6c53695 commit bdfd747
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/open_inwoner/templates/pages/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ <h1 class="utrecht-heading-1">{% trans "Zoekresultaten voor " %} "{% firstof sea
<div class="grid">
{% if paginator.count %}
{% if search_filter_categories or search_filter_tags or search_filter_organizations %}
<aside class="grid__sidebar grid__filters" aria-label="{% trans "Zoekfilters" %}">
<h2 class="utrecht-heading-2">{% trans "Zoekfilters" %}</h2>
{% if search_filter_categories %}
{% include "components/Filter/Filter.html" with field=search_form.categories form_id="search-form" only %}
{% endif %}
{% if search_filter_tags %}
{% include "components/Filter/Filter.html" with field=search_form.tags form_id="search-form" only %}
{% endif %}
{% if search_filter_organizations %}
{% include "components/Filter/Filter.html" with field=search_form.organizations form_id="search-form" only %}
{% endif %}
</aside>

<div class="filter-bar__backdrop" id="filterBarBackdrop">
<div class="filter-bar" id="filterBar">
Expand Down

0 comments on commit bdfd747

Please sign in to comment.