{% if cl %}
{% tab_list "changelist" cl.opts %}
{% elif opts %}
diff --git a/src/unfold/templates/unfold/helpers/header.html b/src/unfold/templates/unfold/helpers/header.html
index 972f66f8..d0245b96 100644
--- a/src/unfold/templates/unfold/helpers/header.html
+++ b/src/unfold/templates/unfold/helpers/header.html
@@ -3,7 +3,7 @@
{% if not is_popup %}
{% block header %}
-
+
{% block usertools %}
diff --git a/src/unfold/views.py b/src/unfold/views.py
index 81118bd9..706c8e86 100644
--- a/src/unfold/views.py
+++ b/src/unfold/views.py
@@ -24,6 +24,7 @@ class UnfoldModelAdminViewMixin(PermissionRequiredMixin):
"""
model_admin = None
+ list_fullwidth = False
def __init__(self, model_admin, **kwargs):
self.model_admin = model_admin
@@ -44,4 +45,5 @@ def get_context_data(self, **kwargs: Any) -> dict[str, Any]:
**kwargs,
**self.model_admin.admin_site.each_context(self.request),
**{"title": self.title},
+ **{"list_fullwidth": self.list_fullwidth},
)