1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00

Fix #84 - User images are gone

Seems that the new `admin catch-all view` added in Django 3.2 is the problem:
https://docs.djangoproject.com/en/4.0/releases/3.2/#id1

Just catch the media url first, to fix #84
This commit is contained in:
JensDiemer 2022-01-07 18:12:38 +01:00
parent e14fe904e9
commit 9ec0bf8e29

View file

@ -22,10 +22,12 @@ if settings.PATH_URL:
# Prefix all urls with "PATH_URL":
urlpatterns = [
# path(f'{settings.PATH_URL}/debug/', debug_view),
path(f'{settings.PATH_URL}/', admin.site.urls),
path(f'{settings.PATH_URL}/ckeditor/', include('ckeditor_uploader.urls')),
# MEDIA_URL contains the "PATH_URL" already:
path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')),
path(f'{settings.PATH_URL}/', admin.site.urls),
path(f'{settings.PATH_URL}/ckeditor/', include('ckeditor_uploader.urls')),
]
if settings.SERVE_FILES:
urlpatterns += static.static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)