Old description:
> Hi all,
>
> Thank you for all your amazing work on this project.
>
> I finally migrated my project today from 3.0 to 3.1 and am now getting a
> broken admin interface. The landing page looks fine but whenever I try to
> access any of the `list` or `change` views it seems like the new
> navigation bar might be taking over the entire screen.
>
> [[Image(https://ibb.co/BnfFrhm)]]
>
> Thanks again!
> Zvi
New description:
Hi all,
Thank you for all your amazing work on this project.
I finally migrated my project today from 3.0 to 3.1 and am now getting a
broken admin interface. The landing page looks fine but whenever I try to
access any of the `list` or `change` views it seems like the new
navigation bar might be taking over the entire screen.
Here is an example when trying to view one of my admin site list views:
[[Image(https://ibb.co/BnfFrhm)]]
Thanks again!
Zvi
--
--
Ticket URL: <https://code.djangoproject.com/ticket/32119#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => duplicate
Comment:
It looks like a duplicate of #31909, please check the list of context
processors, see [https://code.djangoproject.com/ticket/31909#comment:4
comment].
--
Ticket URL: <https://code.djangoproject.com/ticket/32119#comment:2>
Comment (by Zvi Baratz):
Unfortunately, I already tried both to force-refresh and manually clear
the cache. I also validated the relevant settings:
{{{
MIDDLEWARE = [
"whitenoise.middleware.WhiteNoiseMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"corsheaders.middleware.CorsMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
]
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [os.path.join(BASE_DIR, "templates")],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
"django.template.context_processors.media",
]
},
}
]
}}}
As far as I understand everything seems to be OK but I'm still getting the
same result.
--
Ticket URL: <https://code.djangoproject.com/ticket/32119#comment:4>
Comment (by Zvi Baratz):
Replying to [comment:5 Mariusz Felisiak]:
> I'm sorry but we cannot reproduce this issue. Can you provide a small
sample project?
Well, this is embarrassing. I simply neglected to remove my old static
files directory. Sorry and thank you.
--
Ticket URL: <https://code.djangoproject.com/ticket/32119#comment:6>