diff --git a/sapl/templates/crud/list.html b/sapl/templates/crud/list.html
index 9e6d79cc9..02a943205 100644
--- a/sapl/templates/crud/list.html
+++ b/sapl/templates/crud/list.html
@@ -4,13 +4,14 @@
{% block base_content %}
-
- {% if form %}
- {% crispy form %}
- {% elif filter.form %}
- {% crispy filter.form %}
- {% endif %}
-
+ {% block actions_search %}
+
+ {% if form %}
+ {% crispy form %}
+ {% endif %}
+
+ {% endblock actions_search %}
+
{% block actions %}
{% if view.create_url %}
diff --git a/sapl/templates/parlamentares/mesadiretora_filter.html b/sapl/templates/parlamentares/mesadiretora_filter.html
index ecbcfcb81..11dfaf0f2 100644
--- a/sapl/templates/parlamentares/mesadiretora_filter.html
+++ b/sapl/templates/parlamentares/mesadiretora_filter.html
@@ -1,6 +1,14 @@
{% extends "crud/list.html" %}
{% load i18n common_tags crispy_forms_tags cropping %}
+{% block actions_search %}
+
+ {% if filter.form %}
+ {% crispy filter.form %}
+ {% endif %}
+
+{% endblock actions_search %}
+
{% block container_table_list %}
{% if perms.parlamentares.add_mesadiretora %}
{{ block.super }}