X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/66ab038f6f74eb2ebcaf945cf85bb0d7813f791c..a9b45b86d91d95987e15f5113695d7c27e6d66a2:/src/wolnelektury/urls.py diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py index 804e69dce..6208d1911 100644 --- a/src/wolnelektury/urls.py +++ b/src/wolnelektury/urls.py @@ -106,7 +106,12 @@ if settings.DEBUG: ] + urlpatterns if settings.DEBUG: + import functools + from django.views.defaults import page_not_found, server_error urlpatterns += [ + path('error/500/', server_error), + path('error/404/', functools.partial(page_not_found, exception=None)), + # Static files path('%s' % settings.MEDIA_URL[1:], django.views.static.serve, {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),