You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now i solved the issue by creating a static file static/adminactions/css/adminactions.min.css and copied the contents of static/adminactions/css/adminactions.css into the new file.
The text was updated successfully, but these errors were encountered:
Hello
For the merge action, the
adminactions.min.css
cannot be found (I get a 404).OS: macOS Sonoma Version 14.2.1
Pipfile
:settings.py
:urls.py
:Reporduction Steps
django-admin startproject <project-name>
) with the specified packages from thePipfile
.adminactions
to the installed apps (see above).adminactions
to the urls andactions.add_to_site(site)
(see above)./admin/auth/users
, select both users and exectute the "Merge selected users" action.GET http://127.0.0.1:8000/static/adminactions/css/adminactions.min.css net::ERR_ABORTED 404 (Not Found)
in the console.Propbable Cause
I assume this is because in the source I found this line:
django-adminactions/src/adminactions/merge.py
Line 71 in 22d095c
But as far as I see, no
adminactions.min.css
actually exists in the static files. I think this line should beThis file actually exists.
Workaround
For now i solved the issue by creating a static file
static/adminactions/css/adminactions.min.css
and copied the contents ofstatic/adminactions/css/adminactions.css
into the new file.The text was updated successfully, but these errors were encountered: